from agno.agent import Agentfrom agno.models.openai import OpenAIResponsesfrom agno.tools.yfinance import YFinanceToolsagent = Agent( model=OpenAIResponses(id="o3-mini"), tools=[YFinanceTools()], markdown=True,)# Print the response in the terminalagent.print_response("Write a report on the NVDA, is it a good buy?", stream=True)