cookbook/90_models/google/gemini_interactions/antigravity_streaming.py
import asyncio
from agno.agent import Agent
from agno.models.google import GeminiInteractions
agent = Agent(
model=GeminiInteractions(
agent="antigravity-preview-05-2026",
environment="remote",
),
markdown=True,
)
if __name__ == "__main__":
agent.print_response(
"Read Hacker News, summarize the top 5 stories, and save the "
"summary as a Markdown report.",
stream=True,
)
asyncio.run(
agent.aprint_response(
"Find the three most-starred new Python repos on GitHub this "
"week and write a one-paragraph blurb for each.",
stream=True,
)
)