rustvani 0.1.2

Voice AI framework for Rust — real-time speech pipelines with STT, LLM, TTS, and Dhara conversation flows
1
2
3
4
5
6
7
//! Provider-agnostic tool/function schemas.

pub mod function_schema;
pub mod tools_schema;

pub use function_schema::FunctionSchema;
pub use tools_schema::{AdapterType, ToolChoice, ToolsSchema};