from os import getenvfrom agno.agent import Agentfrom agno.models.openai import OpenAIChatfrom agno.tools.duckduckgo import DuckDuckGoToolsfrom atla_insights import configure, instrument_agnoconfigure(token=getenv("ATLA_API_KEY"))agent = Agent( name="Internet Search Agent", model=OpenAIChat(id="gpt-5-mini"), tools=[DuckDuckGoTools()], instructions="You are an internet search agent. Find and provide accurate information on any topic.", debug_mode=True,)# Instrument and runwith instrument_agno("openai"): agent.print_response("What are the latest developments in artificial intelligence?")