from agno.agent import Agentfrom agno.models.portkey import Portkeyfrom agno.tools.duckduckgo import DuckDuckGoToolsagent = Agent( model=Portkey(id="@first-integrati-707071/gpt-5-nano"), tools=[DuckDuckGoTools()], markdown=True,)# Print the response in the terminalagent.print_response("What are the latest developments in AI gateways?", stream=True)