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
11
12
13
//! LLM providers. Each provider is gated behind its own cargo feature.

#[cfg(any(feature = "gemini", feature = "anthropic", feature = "openai"))]
pub(crate) mod common;

#[cfg(feature = "gemini")]
pub mod gemini;

#[cfg(feature = "anthropic")]
pub mod anthropic;

#[cfg(feature = "openai")]
pub mod openai;