genai 0.6.0

Multi-AI Providers Library for Rust. (OpenAI, Gemini, Anthropic, Ollama, AWS Bedrock, Vertex, Groq, DeepSeek, GitHub Copilot and many more)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! The genai embed module contains all of the constructs necessary
//! to make embedding requests with the `genai::Client`.

// region:    --- Modules

mod embed_options;
mod embed_request;
mod embed_response;

// -- Flatten
pub use embed_options::*;
pub use embed_request::*;
pub use embed_response::*;

// endregion: --- Modules