adk-rs 0.6.0

Rust port of the Google Agent Development Kit (ADK).
Documentation
1
2
3
4
5
6
7
8
9
10
//! OpenAI-compatible provider for adk-rs (also handles Azure / Ollama / Groq
//! via base-URL override).

mod client;
mod convert;
mod embedder;
mod stream;

pub use client::{OpenAi, OpenAiConfig};
pub use embedder::OpenAiEmbedder;