"""
Cerebras Oss Gpt
================
Cookbook example for `cerebras/oss_gpt.py`.
"""
from agno.agent.agent import Agent
from agno.models.cerebras.cerebras import Cerebras
from agno.tools.websearch import WebSearchTools
# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------
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?")
# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
pass