rs-adk 0.5.0

Agent runtime for Gemini Live — tools, streaming, agent transfer, middleware
Documentation
1
2
3
4
5
6
7
8
9
//! Utility helpers for model name parsing and platform variant detection.

/// Model name parsing helpers.
pub mod model_name;
/// Platform variant detection (Gemini API vs Vertex AI).
pub mod variant;

pub use model_name::{extract_model_name, is_gemini1_model, is_gemini2_or_above, is_gemini_model};
pub use variant::{get_google_llm_variant, GoogleLlmVariant};