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:
  • messages (List[Dict[str, str]]) – List of message dictionaries with ‘role’ and ‘content’ keys

  • model (ModelName) – The Claude model to use

  • **kwargs – Additional arguments to pass to the model

Return type:

str

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.

Return type:

List[ModelName]

Returns:

List of available Claude model names

get_langchain_llm(model_name, **kwargs)

Get a LangChain chat model instance for Anthropic.

Parameters:
  • model_name (ModelName) – Name of the Claude model to use

  • **kwargs – Additional arguments to pass to the model

Return type:

BaseChatModel

Returns:

LangChain chat model instance for Anthropic