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