cookbook/90_models/google/gemini_interactions/antigravity_environment_config.py
from agno.agent import Agent
from agno.models.google import GeminiInteractions
# Reuse an existing environment by id
agent_reuse = Agent(
model=GeminiInteractions(
agent="antigravity-preview-05-2026",
environment="env_xxxxxxxx",
),
markdown=True,
)
# Full EnvironmentConfig
agent_custom = Agent(
model=GeminiInteractions(
agent="antigravity-preview-05-2026",
environment={
"type": "remote",
"sources": [
{"type": "git", "url": "https://github.com/agno-agi/agno"},
],
"network": {"allow_internet_access": True},
},
),
markdown=True,
)
if __name__ == "__main__":
agent_reuse.print_response(
"Continue the project we started last time and ship the next "
"iteration of the report."
)
agent_custom.print_response(
"Skim the repo we cloned, summarize the module layout, and save "
"the summary to STRUCTURE.md inside the sandbox."
)