hoosh 1.3.0

AI inference gateway — multi-provider LLM routing, local model serving, speech-to-text, and token budget management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Tool use & function calling — unified abstraction across LLM providers,
//! with optional MCP integration via bote + szal.

#[cfg(feature = "tools")]
mod bridge;
mod convert;
mod types;

#[cfg(feature = "tools")]
pub use bridge::McpBridge;
pub use convert::*;
pub use types::*;