Agent with Tools
Give a Cerebras agent web search tools.
Code
from agno.agent import Agent
from agno.models.cerebras import Cerebras
from agno.tools.websearch import WebSearchTools
agent = Agent(
model=Cerebras(id="gpt-oss-120b"),
tools=[WebSearchTools()],
markdown=True,
)
# Print the response in the terminal
agent.print_response("Whats happening in France?")Usage
Set up your virtual environment
uv venv --python 3.12
source .venv/bin/activateSet your API key
export CEREBRAS_API_KEY=xxxInstall dependencies
uv pip install -U cerebras-cloud-sdk ddgs agnoRun Agent
Save the code above as tool_use.py, then run:
python tool_use.py