genai 0.5.3

Multi-AI Providers Library for Rust. (OpenAI, Gemini, Anthropic, xAI, Ollama, Groq, DeepSeek, Grok)
Documentation
//! Client module.
//!
//! Re-exports the public client API: builder, client types, configuration,
//! headers, service targets, and web configuration utilities.

// region:    --- Modules

mod builder;
mod client_impl;
mod client_types;
mod config;
mod headers;
mod service_target;
mod web_config;

pub use builder::*;
pub use client_types::*;
pub use config::*;
pub use headers::*;
pub use service_target::*;
pub use web_config::*;

// endregion: --- Modules