Google Gemini
api node/text/Gemini
GeminiNodeGenerate text responses with Google's Gemini AI model. You can provide multiple types of inputs (text, images, audio, video) as context for generating more relevant and meaningful responses.
Inputs
| Name | Type | Status | Constraints | Default |
|---|---|---|---|---|
prompt? | STRING | required | - | "" |
model? | COMBO | required | - | "gemini-2.5-pro" |
seed? | INT | required | min: 0, max: 1.84e+19 | 42 |
images? | IMAGE | optional | - | - |
audio? | AUDIO | optional | - | - |
video? | VIDEO | optional | - | - |
files? | GEMINI_INPUT_FILES | optional | - | - |
system_prompt? | STRING | optional | - | "" |
Outputs
| Index | Name | Type | Is List | Connection Reference |
|---|---|---|---|---|
0 | STRING | STRING | No | ["{node_id}", 0] |
How to connect to these outputs
To connect another node's input to an output from this node, use the connection reference format:
["node_id", output_index]Where node_id is the ID of this GeminiNode node in your workflow, and output_index is the index from the table above.
Example
If this node has ID "5" in your workflow:
STRING (STRING):["5", 0]
Was this page helpful?