siumai 0.10.3

A unified LLM interface library for Rust
Documentation
//! Parameter Management Module
//!
//! Handles parameter mapping, validation, and provider-specific configurations.
//! This module provides a comprehensive parameter system that supports:
//! - Cross-provider parameter mapping
//! - Enhanced validation with detailed error reporting
//! - Parameter optimization for specific providers
//! - Compatibility checking between providers

pub mod anthropic;
pub mod common;
pub mod gemini;
pub mod mapper;
pub mod ollama;
pub mod openai;
pub mod validator;

// Re-export main types and traits
pub use anthropic::*;
pub use common::*;
pub use gemini::*;
pub use mapper::*;
pub use openai::*;
pub use validator::*;

// Re-export for backward compatibility
pub use anthropic::AnthropicParameterMapper;
pub use gemini::GeminiParameterMapper;
pub use mapper::{ParameterMapper, ParameterMapperFactory};
pub use openai::OpenAiParameterMapper;