agentconnect.providers.groq_provider module

Groq provider implementation for the AgentConnect framework.

This module provides the Groq provider implementation, which allows agents to generate responses using Groq’s hosted 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

async generate_response(messages, model=ModelName.MIXTRAL, **kwargs)

Generate a response using a Groq-hosted model.

Parameters:
  • messages (List[Dict[str, str]]) – List of message dictionaries with ‘role’ and ‘content’ keys

  • model (ModelName) – The Groq 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 Groq models.

Return type:

List[ModelName]

Returns:

List of available Groq model names