from agno.agent import Agentfrom agno.models.openai import OpenAIResponsesfrom agno.tools.yfinance import YFinanceToolsagent = Agent( model=OpenAIResponses(id="o3"), tools=[YFinanceTools(cache_results=True)], markdown=True, telemetry=False,)agent.print_response("What is the current price of TSLA?", stream=True)