Code
cookbook/90_models/neosantara/tool_use.py
from agno.agent import Agent
from agno.models.neosantara import Neosantara
from agno.tools.duckduckgo import DuckDuckGoTools
agent = Agent(
model=Neosantara(id="grok-4.1-fast-non-reasoning"),
tools=[DuckDuckGoTools()],
markdown=True,
)
# Print the response in the terminal
agent.print_response(
"What is the current stock price of NVDA and what is its 52 week high?"
)
Was this page helpful?