Short answer: You can generate content (gemini) in Google Vertex AI by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Google Vertex AI Generate Content (Gemini) action to a workflow, map its 5 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
Model model | options | Required | Model. Options: Gemini 2.5 Pro, Gemini 2.5 Flash, Gemini 2.0 Flash … |
Prompt prompt | string | Required | Prompt (required) |
System Instruction system_instruction | string | Optional | System Instruction |
Temperature temperature | string | Optional | 0.7 |
Max Output Tokens max_output_tokens | string | Optional | 2048 |
{"model": "{{trigger.model}}","prompt": "{{trigger.prompt}}","system_instruction": "{{trigger.system_instruction}}","temperature": "0.7","max_output_tokens": "2048"}
{"candidates": [{"content": {"role": "model","parts": [{"text": "Sample"}]},"finishReason": "STOP"}],"usageMetadata": {"totalTokenCount": 60,"promptTokenCount": 10,"candidatesTokenCount": 50}}
Use these fields in downstream nodes for routing, logging, or error handling.
Any of these apps can fire this action as part of a workflow.