genai 0.6.0-alpha.1

Multi-AI Providers Library for Rust. (OpenAI, Gemini, Anthropic, xAI, Ollama, Groq, DeepSeek, Grok)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! API Documentation:     <https://platform.openai.com/docs/api-reference/responses/create>
//! Model Names:           <https://platform.openai.com/docs/models>
//! Pricing:               <https://platform.openai.com/docs/pricing/> (user: <https://openai.com/api/pricing/>)

// region:    --- Modules

mod adapter_impl;
mod resp_types;

pub use adapter_impl::*;

// endregion: --- Modules