Skip to main content

Google Gemini Connector

Google Gemini Google Gemini is a family of advanced multimodal AI models developed by Google DeepMind.

This component allows you to generate text, images, and videos, manage uploaded files, and list available models using the Google Generative AI API.

API Documentation

This component was built using the Google Generative AI API Reference.

Connections

Google Gemini API

Connect to Google Generative AI (Gemini) using an API key.

Create a connection of type API Key.

To authenticate with Google Gemini using an API key, generate a key from Google AI Studio.

Prerequisites

Setup Steps

  1. Navigate to Google AI Studio API Keys
  2. Click Create API Key and select a Google Cloud project
  3. Copy the generated API key

Configure the Connection

  • Enter the API Key value into the connection configuration
InputCommentsDefault
API KeyYour Google AI Studio API key. Generate API keys here.

Vertex AI API

Connect to Google Generative AI (Gemini) using Vertex AI.

Create a connection of type Service Account.

To authenticate with Google Gemini via Vertex AI, a Google Cloud service account with the appropriate roles is required.

Prerequisites

  • A Google Cloud project with billing enabled
  • Access to the Google Cloud Console
  • The Vertex AI API enabled in the project

Setup Steps

  1. Navigate to the Google Cloud Console and open the IAM & Admin section

  2. Create a Service Account (or use an existing one)

  3. Assign the following roles to the Service Account:

    • Vertex AI User or Vertex AI Administrator
    • Storage Object Viewer
  4. Generate a Service Account Key:

    • Select the Service Account, navigate to the Keys tab, and click Add Key to create a new key
    • Download the JSON file containing the key information
    warning

    The downloaded key file contains sensitive credentials. Store it securely and do not expose it in version control.

  5. Note the Project ID from the top section of the console (click the project selector to display all projects and their IDs)

  6. Identify the target region by navigating to the Vertex AI Dashboard in the console

  7. Enable the Vertex AI API by navigating to APIs & Services > Library, searching for "Vertex AI API", and clicking Enable

Configure the Connection

  • Enter the Client Email using the Service Account email address
  • Enter the Private Key from the downloaded JSON key file
  • Enter the Project ID of the Google Cloud project
  • Enter the Region for API requests (e.g., us-central1). Refer to the available regions for supported values
InputCommentsDefault
Project IDYour Google Cloud project ID.
RegionThe region to use for API requests. Get your region here.
Client EmailThe email address of the client you would like to connect to.
Private KeyThe private key of the client you would like to connect to.

Actions

Delete File

Deletes a file from the service.

InputCommentsDefault
File NameThe name of the file to delete.
ConnectionSelect a Google Gemini connection.

Generate Image

Generates an image using the Google Generative AI (Gemini) model.

InputCommentsDefault
Model NameThe name of the model to get information about (e.g., 'gemini-pro', 'gemini-pro-vision').
PromptText prompt that typically describes the images to output.
Number of ImagesNumber of images to generate.
LanguageLanguage of the generated content.
Aspect RatioAspect ratio of the generated media.
Extra ParametersExtra parameters to pass to the API.
ConnectionSelect a Google Gemini connection.

Generate Text

Send a prompt to the model and return a generated text response.

InputCommentsDefault
PromptThe text prompt to generate a response for.
Model NameThe name of the model to get information about (e.g., 'gemini-pro', 'gemini-pro-vision').
TemperatureControls randomness in the output. Higher values (e.g., 0.8) make output more random, lower values (e.g., 0.2) make it more focused and deterministic.
Max Output TokensMaximum number of tokens to generate in the response.
Top KLimits token selection to the K most likely next tokens.
Top PLimits token selection to tokens with cumulative probability less than P.
Safety SettingsJSON string defining safety settings for content generation.
Extra ParametersExtra parameters to pass to the API.
ConnectionSelect a Google Gemini connection.

Generate Video

Generates a video using the Google Generative AI (Gemini) model.

InputCommentsDefault
Model NameThe name of the model to get information about (e.g., 'gemini-pro', 'gemini-pro-vision').
PromptText prompt that typically describes the video to output.
FPSFPS of the generated video.
Number of VideosNumber of videos to generate.
Person GenerationWhether allow to generate person videos, and restrict to specific ages.
ResolutionResolution of the generated video.
Aspect RatioAspect ratio of the generated media.
Duration SecondsDuration of the clip for video generation in seconds.
Extra ParametersExtra parameters to pass to the API.
ConnectionSelect a Google Gemini connection.

Get File

Retrieves the file information from the service.

InputCommentsDefault
File NameThe name of the file to get.
ConnectionSelect a Google Gemini connection.

Get Model Info

Retrieves detailed information about a specific model from the Google Generative AI API.

InputCommentsDefault
ConnectionSelect a Google Gemini connection.
Model NameThe name of the model to get information about (e.g., 'gemini-pro', 'gemini-pro-vision').

List Files

Lists all current project files from the service.

InputCommentsDefault
Fetch AllIf true, fetch all items.false
Page SizeThe number of items to return per page.
Page TokenThe page token to return.
ConnectionSelect a Google Gemini connection.

List Models

Retrieves a list of available models from the Google Generative AI API.

InputCommentsDefault
Fetch AllIf true, fetch all items.false
Page SizeThe number of items to return per page.
Page TokenThe page token to return.
FilterThe filter to apply to the list.
Extra ParametersExtra parameters to pass to the API.
ConnectionSelect a Google Gemini connection.

Send Message

Sends a message to the chat. Optionally, historical messages can be provided to continue the chat.

InputCommentsDefault
PromptThe prompt you want to ask to the model.
Chat HistoryJSON string containing the chat history, you can use this parameter to give the model a context of the conversation.
Model NameThe name of the model to get information about (e.g., 'gemini-pro', 'gemini-pro-vision').
TemperatureControls randomness in the output. Higher values (e.g., 0.8) make output more random, lower values (e.g., 0.2) make it more focused and deterministic.
Max Output TokensMaximum number of tokens to generate in the response.
Top KLimits token selection to the K most likely next tokens.
Top PLimits token selection to tokens with cumulative probability less than P.
Safety SettingsJSON string defining safety settings for content generation.
Extra ParametersExtra parameters to pass to the API.
ConnectionSelect a Google Gemini connection.

Upload File

Uploads a file asynchronously to the Gemini API.

InputCommentsDefault
FileThe file to upload.
File NameThe name of the file to get.
Display NameThe display name of the file.
ConnectionSelect a Google Gemini connection.