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
//! NOTE:           Currently, GenAI uses the OpenAI compatibility layer, except for listing models.
//! OPENAI API DOC: <https://platform.openai.com/docs/api-reference/chat>
//! OLLAMA API DOC: <https://github.com/ollama/ollama/blob/main/docs/api.md>
//!  OLLAMA Models: <https://ollama.com/library>

// region:    --- Modules

mod adapter_impl;

pub use adapter_impl::*;

// endregion: --- Modules