agentconnect.providers package¶
Provider implementations for the AgentConnect framework.
This module provides various model providers that can be used by AI agents, including support for OpenAI, Anthropic, Groq, and Google AI models. The module implements a factory pattern for creating provider instances based on the desired model provider.
Key components:
ProviderFactory: Factory class for creating provider instances
BaseProvider: Abstract base class for all providers
Specific providers: OpenAI, Anthropic, Groq, Google
- class ProviderFactory¶
Bases:
object
Factory class for creating provider instances.
This class implements the factory pattern for creating provider instances based on the desired model provider.
- _providers¶
Dictionary mapping provider types to provider classes
- classmethod create_provider(provider_type, api_key)¶
Create a provider instance.
- Parameters:
provider_type (
ModelProvider
) – Type of provider to createapi_key (
str
) – API key for the provider
- Return type:
- Returns:
Provider instance
- Raises:
ValueError – If the provider type is not supported
- class BaseProvider(api_key=None)¶
Bases:
ABC
Abstract base class for all model providers.
This class defines the interface that all model providers must implement, including methods for generating responses, getting available models, and configuring the provider.
- Parameters:
api_key (str | None)
- api_key¶
API key for the provider
- async generate_response(messages, model, **kwargs)¶
Generate a response from the language model.
- Parameters:
- Return type:
- Returns:
Generated response text
- Raises:
Exception – If there is an error generating the response
- abstractmethod get_available_models()¶
Get a list of available models for this provider.
- class OpenAIProvider(api_key)¶
Bases:
BaseProvider
Provider implementation for OpenAI models.
This class provides access to OpenAI’s language models, including GPT-4o, GPT-4.5, and o1 models.
- Parameters:
api_key (str)
- api_key¶
OpenAI API key
- 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.
- class GroqProvider(api_key)¶
Bases:
BaseProvider
Provider implementation for Groq models.
This class provides access to Groq’s hosted models, including Llama, Mixtral, and Gemma models.
- Parameters:
api_key (str)
- api_key¶
Groq API key
- class GoogleProvider(api_key)¶
Bases:
BaseProvider
Provider implementation for Google Gemini models.
This class provides access to Google’s Gemini models, including Gemini 1.5 and Gemini 2.0 variants.
- Parameters:
api_key (str)
- api_key¶
Google AI API key