echo_integration 0.2.0

Integration layer for echo-agent framework (providers, mcp, channels)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod anthropic;
pub mod azure;
pub mod client;
pub mod config;
pub mod gemini;
pub mod ollama;
pub mod openai;

pub use anthropic::AnthropicClient;
pub use azure::AzureOpenAiClient;
pub use config::{Config, LlmConfig, LlmProvider, ModelConfig, ProviderFactory};
pub use gemini::GeminiClient;
pub use ollama::OllamaClient;
pub use openai::{DefaultLlmClient, OpenAiClient};