TextCompletion​Text​Completion

Complete text using the Gemini Client.

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

Model

Specifies which generative model (e.g., 'gemini-1.5-flash', 'gemini-1.0-pro') to use for the completion.

Prompt

List of text predictions made by the model.

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).

SubType