gemini
Send a prompt to the local Antigravity CLI and receive text output from Gemini models, with support for multi-turn conversations via stored conversation IDs.
Instructions
Send a prompt to the local Antigravity CLI and return the model text output. The default model is Gemini 3.7 Flash High. Pass store=true to receive a conversation_id that can be used with previous_interaction_id on a later call. Returns model text, interaction_id, model, usage metadata and status. Never returns credentials.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| model | No | Model id. Defaults to gemini-3.7-flash-high. | |
| store | No | Return a conversation_id so it can be referenced later by previous_interaction_id. Defaults to false. | |
| prompt | Yes | The user prompt to send to the model (required, non-empty). | |
| timeout_ms | No | Request timeout in milliseconds. Defaults to 120000, max 300000. | |
| thinking_level | No | Reasoning effort. Defaults to high. | |
| system_instruction | No | Optional system instruction to prepend to the conversation. | |
| previous_interaction_id | No | ID of a previously stored interaction to continue the conversation. Requires store=true. |