> ## Documentation Index
> Fetch the complete documentation index at: https://phidatainc.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Cerebras OpenAI Tool Use

> Call WebSearchTools from a CerebrasOpenAI agent in sync and async modes.

<Warning>
  This example uses a Cerebras model ID that has been retired. Replace the retired ID with `gpt-oss-120b` before running. Review the [Cerebras migration notes](https://inference-docs.cerebras.ai/support/deprecation) when the example uses reasoning, tools, or structured output.
</Warning>

```python tool_use.py theme={null}
"""
Cerebras Openai Tool Use
========================

Cookbook example for `cerebras_openai/tool_use.py`.
"""

import asyncio

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

# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------

agent = Agent(
    model=CerebrasOpenAI(id="llama-4-scout-17b-16e-instruct"),
    tools=[WebSearchTools()],
    markdown=True,
)

# Print the response in the terminal

# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
    # --- Sync ---
    agent.print_response("Whats happening in France?")

    # --- Sync + Streaming ---
    agent.print_response("Whats happening in France?", stream=True)

    # --- Async ---
    asyncio.run(agent.aprint_response("Whats happening in France?"))

    # --- Async + Streaming ---
    asyncio.run(agent.aprint_response("Whats happening in France?", stream=True))
```

## Run the Example

<Steps>
  <Snippet file="create-venv-step.mdx" />

  <Step title="Install dependencies">
    ```bash theme={null}
    uv pip install -U agno cerebras-cloud-sdk ddgs openai
    ```
  </Step>

  <Step title="Export your Cerebras OpenAI-compatible API key">
    <CodeGroup>
      ```bash Mac/Linux theme={null}
      export CEREBRAS_API_KEY="your_cerebras_api_key_here"
      ```

      ```bash Windows theme={null}
      $Env:CEREBRAS_API_KEY="your_cerebras_api_key_here"
      ```
    </CodeGroup>
  </Step>

  <Step title="Use a current Cerebras model">
    Replace `llama-4-scout-17b-16e-instruct` with `gpt-oss-120b` in the saved Python file before running.
  </Step>

  <Step title="Run the example">
    Save the code above as `tool_use.py`, then run:

    ```bash theme={null}
    python tool_use.py
    ```
  </Step>
</Steps>

Full source: [cookbook/90\_models/cerebras\_openai/tool\_use.py](https://github.com/agno-agi/agno/blob/main/cookbook/90_models/cerebras_openai/tool_use.py)
