import osfrom agno.agent import Agentfrom agno.models.portkey import Portkeyfrom agno.tools.websearch import WebSearchToolsagent = Agent( model=Portkey( id="@first-integrati-707071/gpt-5-nano", portkey_api_key=os.getenv("PORTKEY_API_KEY"), ), tools=[WebSearchTools()], markdown=True,)# Print the response in the terminalagent.print_response("What are the latest developments in AI gateways?", stream=True)