from agno.agent import Agentfrom agno.models.openai import OpenAIResponsesfrom agno.tools.duckduckgo import DuckDuckGoToolsagent = Agent( model=OpenAIResponses(id="gpt-5-mini"), tools=[DuckDuckGoTools()], markdown=True,)# Print the response in the terminalagent.print_response("Write a report on the latest news on AI?", stream=True)