TextCompletion
Complete text using the Gemini Client.
See Gemini API about text completion for more information.
yaml
type: "io.kestra.plugin.gemini.TextCompletion"Examples
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
apiKey *Requiredstring
Gemini API Key
model *Requiredstring
Model
Specifies which generative model (e.g., 'gemini-1.5-flash', 'gemini-1.0-pro') to use for the completion.
prompt *Requiredstring
Prompt
Metrics
candidate.token.count counter
The number of candidate tokens generated by the Gemini model.
prompt.token.count counter
The number of tokens used in the input prompt.
total.token.count counter
The total number of tokens processed by the Gemini model (prompt + generated).