agentconnect.providers.google_provider module

Google provider implementation for the AgentConnect framework.

This module provides the Google provider implementation, which allows agents to generate responses using Google’s Gemini models.

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

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

Generate a response using a Google Gemini model.

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

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

Return type:

List[ModelName]

Returns:

List of available Gemini model names