rustvani 0.1.0

Voice AI framework for Rust — real-time speech pipelines with STT, LLM, TTS, and Dhara conversation flows
1
2
3
4
5
6
7
//! Pipeline module: chain assembly and lifecycle management.

mod pipeline;
mod task;

pub use pipeline::Pipeline;
pub use task::{FinishReason, PipelineLifecycle, PipelineParams, PipelineTask};