rustvani 0.2.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
8
9
10
11
pub mod events;
pub mod collector;
pub mod storage;

pub use events::{BillingEvent, SessionSummary};
pub use collector::{BillingCollector, NoopBillingCollector, SessionBilling};
pub use storage::BillingStorage;
pub use storage::log_storage::LogBillingStorage;

#[cfg(feature = "db-postgres")]
pub use storage::postgres::PostgresBillingStorage;