from agno.agent import Agentfrom agno.models.neosantara import Neosantarafrom agno.tools.websearch import WebSearchToolsagent = Agent( model=Neosantara(id="grok-4.1-fast-non-reasoning"), tools=[WebSearchTools()], 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?")