Expand description
Anthropic Claude provider driver for Everruns.
everruns-anthropic is part of the Everruns
ecosystem. It implements the ChatDriver contract from everruns-core and
registers Anthropic’s Messages API driver into a DriverRegistry.
Provider crates depend on everruns-core; everruns-core does not depend on
provider implementations. Hosts register whichever drivers they want to make
available.
§Example
use everruns_anthropic::{AnthropicChatDriver, register_driver};
use everruns_provider::DriverRegistry;
let driver = AnthropicChatDriver::new("your-api-key");
let mut registry = DriverRegistry::new();
register_driver(&mut registry);
assert!(format!("{driver:?}").contains("AnthropicChatDriver"));Structs§
- Anthropic
Chat Driver - Anthropic Claude Chat Driver
- Driver
Registry - Registry for LLM drivers
Traits§
- Chat
Driver - Trait for LLM drivers
Functions§
- register_
driver - Register the Anthropic driver with the driver registry