
Gemini Interactions Api
- 9.8k installs
- 3.9k repo stars
- Updated July 24, 2026
- google-gemini/gemini-skills
Python/TypeScript SDK for calling Gemini 3.x models and managed agents via the Interactions API, supporting text generation, multi-turn chat, multimodal I/O, streaming, function calling, structured output, and background
About
Gemini Interactions API is the current, recommended interface for using Gemini models and managed agents. Developers use it to generate text with gemini-3.5-flash or gemini-3.1-pro, conduct multi-turn conversations with state stored server-side, invoke managed agents like Antigravity (code execution, web browsing) or Deep Research, stream incremental responses, call functions and tools (Google Search, code execution, URL context, file search), and output structured JSON or images. The SDK replaces the deprecated generateContent API. Core workflows include creating interactions with model/agent/input, chaining turns via previous_interaction_id, streaming with step.delta events, polling background tasks, and building custom agents with sandboxed Linux environments.
- Supports gemini-3.5-flash (1M tokens, balanced), gemini-3.1-pro (complex reasoning), gemini-3-pro-image (image generatio
- Managed agents: Antigravity (general-purpose sandboxed code/web), Deep Research (fast/max exhaustiveness), plus custom a
- Multi-turn conversation via previous_interaction_id; interactions stored server-side by default (55 days paid, 1 day fre
- Streaming returns interaction.created, step.start/delta/stop, interaction.completed events; text/audio/image deltas, thi
- Tools include Google Search, code execution, URL context, file search, Maps grounding, MCP server integration, and Compu
Gemini Interactions Api by the numbers
- 9,806 all-time installs (skills.sh)
- +745 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #86 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Security screen: MEDIUM risk (skills.sh audit)
- Data as of Aug 5, 2026 (Skillselion catalog sync)
gemini-interactions-api capabilities & compatibility
Variable per model (gemini-3.5-flash: $0.075-$0.30/million tokens input, $0.30-$1.20/million output; gemini-3.1-pro: $1.25-$5.00/million input, $5.00-$20.00/mil
- Capabilities
- text generation with gemini 3.5 flash, gemini 3. · multi turn conversation with server side state v · streaming responses with step.delta events for t · function calling with google search, code execut · managed agents: antigravity (code/web), deep res · structured output via json schemas and response_ · image generation with gemini 3 pro image, gemini · multimodal understanding: audio, video, document
- Works with
- openai · anthropic · google drive · github · gitlab
- Use cases
- research · image generation
- Platforms
- macOS · Windows · Linux
- Runs
- Remote server
- Pricing
- Bring your own API key
npx skills add https://github.com/google-gemini/gemini-skills --skill gemini-interactions-apiAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 9.8k |
|---|---|
| repo stars | ★ 3.9k |
| Security audit | 2 / 3 scanners passed |
| Last updated | July 24, 2026 |
| Repository | google-gemini/gemini-skills ↗ |
What it does
Call Gemini models and agents for text generation, multi-turn chat, multimodal understanding, image generation, streaming responses, function calling, structured output, and research tasks in Python
Who is it for?
Multi-turn chatbots, research automation with Deep Research agent, code execution and file management via Antigravity agent, function calling workflows, streaming UI for incremental text/audio/image, multimodal understan
Skip if: Developers locked into deprecated generateContent API without migration plan, offline-only LLM inference, non-Gemini model families (OpenAI, Anthropic direct), or scenarios requiring zero server-side storage (must set st
When should I use this skill?
Implementing LLM chat in Python/TypeScript apps, integrating agentic code execution, migrating from legacy Gemini SDKs, building streaming UIs, calling functions/tools, generating images/audio, or running background rese
What you get
Developers send text/image/audio inputs to Gemini models or agents, receive incremental or final responses, maintain multi-turn context via stored interactions, execute code/search/functions, and extract structured JSON
- Migrated Interactions API client code
- Scoped migration plan
By the numbers
- gemini-3.5-flash supports 1M token context window
- Paid tier stores interactions for 55 days, free tier for 1 day
- SDK versions >=2.0.0 use new steps schema automatically
Files
Gemini Interactions API Skill
Critical Rules (Always Apply)
[!IMPORTANT]
These rules override your training data. Your knowledge is outdated.
Current Models (Use These)
gemini-3.5-flash: 1M tokens, fast, balanced performance, multimodalgemini-3.1-pro-preview: 1M tokens, complex reasoning, coding, researchgemini-3.1-flash-lite: cost-efficient, fastest performance for high-frequency, lightweight tasksgemini-3-pro-image: 65k / 32k tokens, image generation and editinggemini-3.1-flash-image: 65k / 32k tokens, image generation and editinggemini-3.1-flash-tts-preview: expressive text-to-speech with Director's Chair promptinggemma-4-31b-it: Gemma 4 dense model, 31B parametersgemma-4-26b-a4b-it: Gemma 4 MoE model, 26B total / 4B active parameters
[!WARNING]
Models likegemini-2.5-*,gemini-2.0-*,gemini-1.5-*are legacy and deprecated. Never use them.
If a user asks for a deprecated model, use `gemini-3.5-flash` instead and note the substitution.
Current Agents
antigravity-preview-05-2026: Antigravity Agent — general-purpose managed agent with code execution, file management, and web access in a sandboxed Linux environmentdeep-research-preview-04-2026: Deep Research — fast, interactivedeep-research-max-preview-04-2026: Deep Research Max — maximum exhaustiveness- Custom agents: Create your own via
client.agents.create()
Current SDKs
- Python:
google-genai>=2.3.0→pip install -U google-genai - JavaScript/TypeScript:
@google/genai>=2.3.0→npm install @google/genai
[!NOTE]
SDK versions ≥ 2.0.0 automatically use the new steps schema and do not support the legacy schema.
Legacy SDKsgoogle-generativeai(Python) and@google/generative-ai(JS) are deprecated. Never use them.
Important Additional Notes
- Before writing any code, you MUST fetch the relevant documentation page from the list below that matches the user's task. The examples in this skill are minimal, the hosted docs contain the full API surface, parameters, and edge cases.
- Interactions are stored by default (
store=true). Paid tier retains for 55 days, free tier for 1 day. - Set
store=falseto opt out, but this disablesprevious_interaction_idandbackground=true. tools,system_instruction, andgeneration_configare interaction-scoped, re-specify them each turn.- Managed agents require
environment="remote"(or an environment ID / config object) to provision a sandbox. - Migrating from `generateContent`: Read
references/migration.mdfor the scoping, checklist, and before/after code examples. Always confirm scope with the user before editing. - Model upgrades: Drop-in, swap the model string. Deprecated models (
gemini-2.0-*,gemini-1.5-*) must be replaced, seereferences/migration.md. - Migrating to Gemini 3.5 Flash: Read
references/migration.mdfor the scoping and checklist.
Quick Start
Python
from google import genai
client = genai.Client()
interaction = client.interactions.create(
model="gemini-3.5-flash",
input="Tell me a short joke about programming."
)
print(interaction.output_text)JavaScript/TypeScript
import { GoogleGenAI } from "@google/genai";
const client = new GoogleGenAI({});
const interaction = await client.interactions.create({
model: "gemini-3.5-flash",
input: "Tell me a short joke about programming.",
});
console.log(interaction.output_text);Response Helpers
The SDK provides convenience properties on the Interaction response object to simplify common access patterns:
| Property | Type | Description |
|---|---|---|
output_text | `string \ | null` |
output_image | `Image \ | null` |
output_audio | `Audio \ | null` |
Stateful Conversation
Python
interaction1 = client.interactions.create(
model="gemini-3.5-flash",
input="Hi, my name is Phil."
)
# Second turn — server remembers context
interaction2 = client.interactions.create(
model="gemini-3.5-flash",
input="What is my name?",
previous_interaction_id=interaction1.id
)
print(interaction2.output_text)JavaScript/TypeScript
const interaction1 = await client.interactions.create({
model: "gemini-3.5-flash",
input: "Hi, my name is Phil.",
});
const interaction2 = await client.interactions.create({
model: "gemini-3.5-flash",
input: "What is my name?",
previous_interaction_id: interaction1.id,
});
console.log(interaction2.output_text);Deep Research Agent
Use deep-research-preview-04-2026 for fast research or deep-research-max-preview-04-2026 for maximum exhaustiveness. Agents require background=True.
Python
import time
interaction = client.interactions.create(
agent="deep-research-preview-04-2026",
input="Research the history of Google TPUs.",
background=True
)
while True:
interaction = client.interactions.get(interaction.id)
if interaction.status == "completed":
print(interaction.output_text)
break
elif interaction.status == "failed":
print(f"Failed: {interaction.error}")
break
time.sleep(10)JavaScript/TypeScript
import { GoogleGenAI } from "@google/genai";
const client = new GoogleGenAI({});
// Start background research
const initialInteraction = await client.interactions.create({
agent: "deep-research-preview-04-2026",
input: "Research the history of Google TPUs.",
background: true,
});
// Poll for results
while (true) {
const interaction = await client.interactions.get(initialInteraction.id);
if (interaction.status === "completed") {
console.log(interaction.output_text);
break;
} else if (["failed", "cancelled"].includes(interaction.status)) {
console.log(`Failed: ${interaction.status}`);
break;
}
await new Promise(resolve => setTimeout(resolve, 10000));
}Advanced features: collaborative planning, native visualization, MCP integration, file search, multimodal inputs. See Deep Research docs.
Managed Agents
Managed agents run inside a sandboxed Linux environment hosted by Google. Fetch the Managed Agents Quickstart before writing agent code.
Antigravity Agent
The Antigravity agent (antigravity-preview-05-2026) is the general-purpose managed agent. It can execute code (Bash, Python, Node.js), manage files, browse the web, and use Google Search. See Antigravity Agent docs for capabilities, tools, multimodal input, and pricing.
Python
from google import genai
client = genai.Client()
interaction = client.interactions.create(
agent="antigravity-preview-05-2026",
input="Write a Python script that generates the first 20 Fibonacci numbers and saves them to fibonacci.txt. Then read the file and print its contents.",
environment="remote",
)
print(f"Environment ID: {interaction.environment_id}")
print(interaction.output_text)JavaScript/TypeScript
import { GoogleGenAI } from "@google/genai";
const client = new GoogleGenAI({});
const interaction = await client.interactions.create({
agent: "antigravity-preview-05-2026",
input: "Write a Python script that generates the first 20 Fibonacci numbers and saves them to fibonacci.txt. Then read the file and print its contents.",
environment: "remote",
});
console.log(`Environment ID: {interaction.environment_id}`);
console.log(interaction.output_text);Custom Agents
See Building Custom Agents docs.
Python
agent = client.agents.create(
id="code-reviewer",
base_agent="antigravity-preview-05-2026",
system_instruction="You are a senior code reviewer. Check every file for bugs, style issues, and security vulnerabilities.",
base_environment={
"type": "remote",
"sources": [
{
"type": "repository",
"source": "https://github.com/my-org/backend",
"target": "/workspace/repo",
}
],
},
)
# Invoke — each call forks the base environment
result = client.interactions.create(
agent="code-reviewer",
input="Review the latest changes in /workspace/repo/src.",
environment="remote",
)
print(result.output_text)JavaScript/TypeScript
const agent = await client.agents.create({
id: "code-reviewer",
base_agent="antigravity-preview-05-2026",
system_instruction: "You are a senior code reviewer. Check every file for bugs, style issues, and security vulnerabilities.",
base_environment: {
type: "remote",
sources: [
{
type: "repository",
source: "https://github.com/my-org/backend",
target: "/workspace/repo",
}
],
},
});
const result = await client.interactions.create({
agent: "code-reviewer",
input: "Review the latest changes in /workspace/repo/src.",
environment: "remote",
});
console.log(result.output_text);Manage agents with client.agents.list(), client.agents.get(id=...), and client.agents.delete(id=...).
Streaming
Set stream=True to receive incremental server-sent events. Each stream follows: interaction.created → (step.start → step.delta(s) → step.stop)+ → interaction.completed.
Python
for event in client.interactions.create(
model="gemini-3.5-flash",
input="Explain quantum entanglement in simple terms.",
stream=True,
):
if event.event_type == "step.delta":
if event.delta.type == "text":
print(event.delta.text, end="", flush=True)
elif event.event_type == "interaction.completed":
print(f"\n\nTotal Tokens: {event.interaction.usage.total_tokens}")JavaScript/TypeScript
const stream = await client.interactions.create({
model: "gemini-3.5-flash",
input: "Explain quantum entanglement in simple terms.",
stream: true,
});
for await (const event of stream) {
if (event.event_type === "step.delta") {
if (event.delta.type === "text") {
process.stdout.write(event.delta.text);
}
} else if (event.event_type === "interaction.completed") {
console.log(`\n\nTotal Tokens: ${event.interaction.usage.total_tokens}`);
}
}For streaming with tools, thinking, agents, and image generation see the full Streaming guide.
Documentation Pages
You MUST fetch the matching page below before writing code. These hosted docs are the source of truth for parameters, types, and edge cases — do not rely solely on the examples above.
Core Documentation:
Tools & Function Calling:
- Function Calling
- Google Search
- Code Execution
- URL Context
- File Search
- Tool Combination
- Computer Use
- Maps Grounding
Generation & Output:
- Structured Output
- Thinking
- Thought Signatures
- Image Generation
- Image Understanding
- Speech Generation
- Music Generation
Multimodal Understanding:
Files & Context:
Agents:
- Agents Overview
- Managed Agents Quickstart
- Antigravity Agent
- Agent Environments
- Building Custom Agents
- Deep Research
Advanced Features:
API Reference:
Data Model
An Interaction response contains steps, an array of typed step objects representing a structured timeline of the interaction turn.
Step Types
User steps:
user_input: User input (text, audio, multimodal). Containscontentarray.
Model/server steps:
model_output: Final model generation. Containscontentarray withtext,image,audio, etc.thought: Model reasoning/Chain of Thought. Hassignaturefield (required) and optionalsummary.function_call: Tool call request (id,name,arguments).function_result: Tool result you send back (call_id,name,result).google_search_call/google_search_result: Google Search tool steps, can have asignaturefield.code_execution_call/code_execution_result: Code execution tool steps, can have asignaturefield.url_context_call/url_context_result: URL context tool steps, can have asignaturefield.mcp_server_tool_call/mcp_server_tool_result: Remote MCP tool steps.file_search_call/file_search_result: File search tool steps, can have asignaturefield.
Content types (inside content array on model_output and user_input steps)
text: Text content (textfield)image/audio/document/video: Content withdata,mime_type, oruri
Streaming Event Types
| Event | Description |
|---|---|
interaction.created | Interaction created; includes metadata. |
interaction.status_update | Interaction-level status change. |
step.start | A new step begins. Contains step type and initial metadata. |
step.delta | Incremental data for the current step. Contains a typed delta object. |
step.stop | The step is complete. Contains index. |
interaction.completed | Interaction finished. Contains final usage. |
Delta Types
| Delta Type | Parent Step | Description |
|---|---|---|
text | model_output | Incremental text token. |
audio | model_output | audio chunk (base64). |
image | model_output | image chunk (base64). |
thought_summary | thought | thinking summary text. |
thought_signature | thought | Opaque signature for thought verification. |
Status values: completed, in_progress, requires_action, failed, cancelled
Migration Reference
How to migrate existing Gemini API code to the Interactions API and/or upgrade between model generations. Covers the agent workflow for performing migrations safely.
For detailed before/after code examples across all feature areas (text generation, multi-turn, streaming, function calling, structured output, grounding, multimodal), fetch the full migration guide: https://ai.google.dev/gemini-api/docs/migrate-to-interactions.md.txt
Confirm the Migration Scope
Before any edits, confirm the scope. If the user's request does not explicitly name a single file, a specific directory, or an explicit file list, ask first and do not start editing.
Even imperative requests like "migrate my code", "upgrade to gemini 3", or "switch to the Interactions API" leave the scope ambiguous. Ask:
Before I start editing, can you confirm the scope?
1. Entire project
2. Specific subdirectory (e.g.src/,api/)
3. Specific file or list of files
Sizing the scope (large repos). Before asking, get a per-directory count:
rg -l "generate_content\|generateContent\|gemini-2\.0\|gemini-1\.5\|gemini-2\.5\|gemini-3-flash-preview\|thinking_budget\|temperature" --type-not md | cut -d/ -f1 | sort | uniq -c | sort -rnPresent the breakdown in your question (e.g. "Found 42 references across 3 directories: src/ (28), tests/ (10), scripts/ (4). Which to migrate?").
Proceed without asking only when the scope is already unambiguous, the user named an exact file ("migrate app.py"), pointed at a directory ("migrate everything under src/"), or already confirmed scope in an earlier turn.
API Migration: generateContent → Interactions
The core changes when migrating from generateContent to the Interactions API:
| What | generateContent | Interactions API |
|---|---|---|
| SDK method | client.models.generate_content() | client.interactions.create() |
| Response text | response.text | interaction.steps[-1].content[0].text |
| Multi-turn | Manual history array or client.chats.create() | previous_interaction_id=interaction.id |
| Streaming | generate_content_stream() / :streamGenerateContent | stream=True + step.delta events |
| Structured output | config.response_format inside GenerateContentConfig | Top-level response_format array |
| Function calling | candidates[0].content.parts[0].function_call | function_call step in interaction.steps |
| Search grounding | groundingMetadata on candidates | google_search_call/google_search_result steps + inline annotations |
| Config/types | types.GenerateContentConfig(...), types.Tool(...), types.Content(...), types.Part.* | Not used. Interactions API uses plain Python dicts and direct params. Check the feature docs for exact format. |
| REST endpoint | POST /v1beta/models/{model}:generateContent | POST /v1beta/interactions |
| SDK package | google-genai ≥ 1.x or legacy google-generativeai | google-genai ≥ 2.0.0 |
For full before/after code examples, fetch the Migration Guide or read the Interactions API documentation pages for each feature.
Model Migration
Deprecated Models
| Model | Status | Drop-in Replacement |
|---|---|---|
gemini-2.0-flash | Deprecated | gemini-3.5-flash |
gemini-2.0-flash-lite | Deprecated | gemini-3.1-flash-lite |
gemini-1.5-pro | Deprecated | gemini-3.5-flash |
gemini-1.5-flash | Deprecated | gemini-3.5-flash |
Active Legacy Models (migration recommended)
| Current Model | Recommended Target | Why |
|---|---|---|
gemini-2.5-flash-lite | gemini-3.1-flash-lite | Latest Flash-lite with Interactions API support |
gemini-2.5-flash | gemini-3.5-flash | Latest Flash with Interactions API support |
gemini-2.5-pro | gemini-3.1-pro-preview | Latest Pro with 1M context, complex reasoning |
gemini-3-flash-preview | gemini-3.5-flash | Latest Flash with Interactions API support |
Note: Within the Interactions API, model upgrades are generally drop-in — change the model string and verify. The breaking changes are at the API level (generateContent → Interactions), not between model generations.
Migration Checklist
Every item is tagged: `[BLOCKS]` items cause errors or broken behavior if missed. `[TUNE]` items are quality/performance adjustments.
API Migration (generateContent → Interactions)
- [ ] Updated SDK:
google-genai≥ 2.0.0 (Python) /@google/genai≥ 2.0.0 (JS) - [ ] Replaced
client.models.generate_content()→client.interactions.create() - [ ] Replaced
response.text→interaction.steps[-1].content[0].text - [ ] Replaced
response.candidates[0].content.parts→ iterateinteraction.steps - [ ] Replaced
client.chats.create()/ manual history →previous_interaction_id - [ ] Removed all
types.*wrappers (GenerateContentConfig,Tool,Content,Part) — Interactions API uses plain dicts. Check feature docs for exact format. - [ ] Moved
response_formatfromGenerateContentConfigto top-level parameter - [ ] Replaced
generate_content_stream()→stream=True+ step-based event handling - [ ] Updated function calling: candidates-based → step-based tool lifecycle
- [ ] REST: Changed endpoint to
/v1beta/interactions - [ ] REST: Add
Api-Revision: 2026-05-20header (SDK ≥ 2.0.0 sets it automatically) - [ ] Replaced
google-generativeai(Python) →google-genai≥ 2.0.0 - [ ] Replaced
@google/generative-ai(JS) →@google/genai≥ 2.0.0 - [ ] Updated all import statements to match new package names
Model String Updates
- [ ] Replaced
gemini-2.0-*model strings with current equivalents - [ ] Replaced
gemini-1.5-*model strings with current equivalents - [ ] Consider upgrading
gemini-3-flash-preview→gemini-3.5-flash - [ ] Consider upgrading
gemini-2.5-flash→gemini-3.5-flash - [ ] Consider upgrading
gemini-2.5-flash-lite→gemini-3.1-flash-lite - [ ] Consider upgrading
gemini-2.5-pro→gemini-3.1-pro-preview
Migrate to Gemini 3.5
Use this checklist if the user requests to migrate to Gemini 3.5. For full documentation of the changes, fetch the What's new Gemini 3.5 guide.
- [ ] Updated model name to
gemini-3.5-flash - [ ] Removed
temperature,top_p,top_kfrom config - [ ] Replaced
thinking_budgetwiththinking_level(minimal,low,medium,high)
---
Verify the Migration
After updating, run a spot-check to confirm the Interactions API is working:
1. Make a single client.interactions.create() call with a simple input 2. Assert interaction.steps is not empty 3. Assert at least one step has type == "model_output" with non-empty text 4. For multi-turn, verify previous_interaction_id preserves context across turns
For verification code snippets, fetch the Migration Guide.
Related skills
Forks & variants (1)
Gemini Interactions Api has 1 known copy in the catalog totaling 47 installs. They canonicalize to this original listing.
- google-gemini - 47 installs
FAQ
Which models should I use, and which are deprecated?
Use gemini-3.5-flash (balanced, 1M tokens), gemini-3.1-pro-preview (complex reasoning), gemini-3.1-flash-lite (cost-efficient), or gemini-3-pro-image (image generation). Models like gemini-2.5-*, gemini-2.0-*, gemini-1.5-* are deprecated. Never use legacy SDKs google-generativeai
How do I maintain conversation context across turns?
Pass previous_interaction_id from the prior response into the next create() call. Interactions are stored server-side by default (store=true): 55 days on paid tier, 1 day on free tier. Set store=false to opt out but lose state and background task support.
How do I use managed agents like Antigravity or Deep Research?
Antigravity requires environment='remote' for sandboxed code execution/web browsing. Deep Research agents require background=true and polling via interactions.get() until status='completed'. Custom agents extend base agents with system_instruction and base_environment config.
Is Gemini Interactions Api safe to install?
skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.