cookbook/90_models/google/gemini_interactions/deep_research.py
import asyncio
from agno.agent import Agent
from agno.models.google import GeminiInteractions
agent = Agent(
model=GeminiInteractions(
agent="deep-research-preview-04-2026",
thinking_summaries="auto",
visualization="auto",
),
markdown=True,
)
if __name__ == "__main__":
agent.print_response(
"Research the current state of solid-state battery commercialization "
"and summarize the leading approaches."
)
asyncio.run(
agent.aprint_response(
"Compare the major open-source vector databases on indexing and query latency.",
stream=True,
)
)