// Gateway module for models
// All external access must go through this gateway
// Core modules
// Provider adapters (Ollama, OpenAI-compatible)
// ModelFactory (single factory)
// Unified configuration
// Structured error types
// Tool call parsing (native function calling)
// Model trait (public API)
// Core types (ChatMessage, etc) // Tool definitions
// Public re-exports - the ONLY way to access model functionality
pub use ModelFactory;
pub use ;
pub use ;
pub use ;
pub use ;
pub use Model;
pub use ;