Gemini TextCompletion

Gemini TextCompletion

Certified

Generate text with a Gemini model

Sends a single prompt to the configured Gemini model and returns the generated text. Token usage metrics are emitted; ensure the model supports text-only input. See Gemini API about text completion for more information.

yaml
type: io.kestra.plugin.gemini.TextCompletion

Text completion using the Gemini Client.

yaml
id: gemini_text_completion
namespace: company.team

tasks:
  - id: text_completion
    type: io.kestra.plugin.gemini.TextCompletion
    apiKey: "{{ secret('GEMINI_API_KEY') }}"
    model: "gemini-2.5-flash"
    prompt: What color is the sky? Answer with a unique word and without any punctuation.
Properties

Gemini API key

Secret used for direct Gemini API calls; render from a secure variable.

Generative model

Gemini model identifier to call (e.g., gemini-2.5-flash, gemini-1.5-pro). Must support the requested input type.

Text prompt

Prompt string sent to the model after template rendering.

Reference (ref) of the pluginDefaults to apply to this task.

List of text predictions made by the model

Definitions
citationMetadata
contentstring
safetyRatingsarray

The number of candidate tokens generated by the Gemini model.

The number of tokens used in the input prompt.

The total number of tokens processed by the Gemini model (prompt + generated).