from agno.agent import Agentfrom agno.models.langdb import LangDBfrom agno.tools.yfinance import YFinanceToolsagent = Agent( model=LangDB(id="gpt-4o-mini"), tools=[ YFinanceTools( stock_price=True, analyst_recommendations=True, stock_fundamentals=True ) ], show_tool_calls=True, description="You are an investment analyst that researches stocks and helps users make informed decisions.", instructions=["Use tables to display data where possible."], markdown=True,)# agent.print_response("Share the NVDA stock price and analyst recommendations", stream=True)agent.print_response("Summarize fundamentals for TSLA", stream=True)