import asynciofrom 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 terminalasyncio.run( agent.aprint_response("What is the current stock price of NVDA?", stream=True))