Readd the anthropic provider

This commit is contained in:
Dhanji Prasanna
2025-09-20 18:40:51 +10:00
parent 9b6851c4f5
commit 444245d7dd
6 changed files with 634 additions and 2 deletions

View File

@@ -75,6 +75,10 @@ pub struct ToolCall {
pub args: serde_json::Value,
}
pub mod anthropic;
pub use anthropic::AnthropicProvider;
/// Provider registry for managing multiple LLM providers
pub struct ProviderRegistry {
providers: HashMap<String, Box<dyn LLMProvider>>,