What problem does it solve? Developers writing code against the Gemini API often rely on outdated knowledge of deprecated models, legacy SDKs, and the old generateContent API, producing broken or obsolete code. This Skill provides current model names, SDK versions, the new steps-based response schema, and migration guidance so generated code works with the Interactions API. ## Core Features & Use Cases - Current API Patterns: Provides working examples for text generation, multi-turn conversations via previous_interaction_id, streaming with step.delta events, and background agents in Python and TypeScript. - Managed and Custom Agents: Covers the Antigravity agent, Deep Research agents, and custom agent creation with sandboxed remote environments. - Migration Support: Includes a reference guide for migrating from generateContent to the Interactions API, replacing deprecated model strings, and upgrading to Gemini 3.5 Flash. - Use Case: A developer asks to add streaming chat to an app using gemini-2.0-flash. The Skill substitutes gemini-3.5-flash, uses client.interactions.create with stream=True, and handles step.delta events correctly. ## Quick Start Ask the AI to write a Python script that calls the Gemini Interactions API with gemini-3.5-flash to generate a short text response.