Code
cookbook/11_models/ibm/watsonx/tool_use.py
from agno.agent import Agent
from agno.models.ibm import WatsonX
from agno.tools.hackernews import HackerNewsTools
agent = Agent(
model=WatsonX(id="meta-llama/llama-3-3-70b-instruct"),
tools=[HackerNewsTools()],
markdown=True,
)
agent.print_response("Whats happening in France?", stream=True)
Was this page helpful?