agentconnect.providers.anthropic_provider module¶
Anthropic provider implementation for the AgentConnect framework.
This module provides the Anthropic provider implementation, which allows agents to generate responses using Anthropic’s Claude models.
- class AnthropicProvider(api_key)¶
Bases:
BaseProvider
Provider implementation for Anthropic Claude models.
This class provides access to Anthropic’s Claude models, including Claude 3 Opus, Sonnet, and Haiku variants.
- Parameters:
api_key (str)
- api_key¶
Anthropic API key
- client¶
Anthropic client instance
- async generate_response(messages, model=ModelName.CLAUDE_3_5_HAIKU, **kwargs)¶
Generate a response using an Anthropic Claude model.
- Parameters:
- Return type:
- Returns:
Generated response text
- Raises:
Exception – If there is an error generating the response
- get_available_models()¶
Get a list of available Anthropic Claude models.