agent-air-runtime 0.7.0

Core runtime for agent-air - LLM orchestration, tools, and permissions (no TUI dependencies)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! LLM provider implementations.

/// Anthropic Claude provider.
pub mod anthropic;
/// Amazon Bedrock provider.
pub mod bedrock;
/// Cohere provider.
pub mod cohere;
/// Common utilities shared across providers.
pub mod common;
/// Google Gemini provider.
pub mod gemini;
/// OpenAI provider.
pub mod openai;