chatdelta 0.8.2

A unified Rust library for connecting to multiple AI APIs with streaming, conversations, and parallel execution
Documentation
1
2
3
4
5
6
7
8
9
//! AI client implementations

pub mod claude;
pub mod gemini;
pub mod openai;

pub use claude::Claude;
pub use gemini::Gemini;
pub use openai::ChatGpt;