agentconnect.providers.openai_provider module
OpenAI provider implementation for the AgentConnect framework.
This module provides the OpenAI provider implementation, which allows
agents to generate responses using OpenAI’s language models.
-
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
-
async generate_response(messages, model=ModelName.GPT4O_MINI, **kwargs)
Generate a response using an OpenAI model.
- Parameters:
messages (List
[Dict
[str
, str
]]) – List of message dictionaries with ‘role’ and ‘content’ keys
model (ModelName
) – The OpenAI 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 OpenAI models.
- Return type:
List
[ModelName
]
- Returns:
List of available OpenAI model names