Agent with Tools

Give a CerebrasOpenAI agent web search tools.

Code

from agno.agent import Agent
from agno.models.cerebras import CerebrasOpenAI
from agno.tools.websearch import WebSearchTools

agent = Agent(
    model=CerebrasOpenAI(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/activate

Set your API key

export CEREBRAS_API_KEY=xxx

Install dependencies

uv pip install -U openai cerebras-cloud-sdk ddgs agno

Run Agent

Save the code above as tool_use.py, then run:

python tool_use.py