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