genai 0.6.0-beta.16

Multi-AI Providers Library for Rust. (OpenAI, Gemini, Anthropic, xAI, Ollama, Groq, DeepSeek, Grok, GitHub Copilot)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! API Documentation:     <https://ai.google.dev/api/rest/v1beta/models/generateContent>
//! Model Names:           <https://ai.google.dev/gemini-api/docs/models/gemini>
//! Pricing:               <https://ai.google.dev/pricing>

// region:    --- Modules

mod adapter_impl;
mod embed;
mod openapi_schema;
mod streamer;

pub use adapter_impl::*;
pub use streamer::*;

// endregion: --- Modules