from agno.agent import Agentfrom agno.models.neosantara import Neosantarafrom agno.tools.duckduckgo import DuckDuckGoToolsagent = Agent( model=Neosantara(id="grok-4.1-fast-non-reasoning"), tools=[DuckDuckGoTools()], markdown=True,)# Print the response in the terminalagent.print_response( "What is the current stock price of NVDA and what is its 52 week high?")