from agno.agent import Agentfrom agno.models.openai import OpenAIChatfrom agno.tools.yfinance import YFinanceToolsfrom langtrace_python_sdk import langtracefrom langtrace_python_sdk.utils.with_root_span import with_langtrace_root_span# Initialize Langtracelangtrace.init()# Create and configure the agentagent = Agent( name="Stock Price Agent", model=OpenAIChat(id="gpt-4o-mini"), tools=[YFinanceTools()], instructions="You are a stock price agent. Answer questions in the style of a stock analyst.", debug_mode=True,)# Use the agentagent.print_response("What is the current price of Tesla?")