ai_client 0.1.0

A Rust crate for interacting with AI language model APIs
Documentation
1
2
3
4
5
6
7
8
9
pub mod client;
pub mod grok;
pub mod anthropic;
pub mod openai;

pub use client::ChatCompletionClient;
pub use grok::GrokClient;
pub use anthropic::AnthropicClient;
pub use openai::OpenAIClient;