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

# Cerebras Basic

> Compare synchronous, asynchronous, and streaming calls with the Cerebras model client.

<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 basic.py theme={null}
"""
Cerebras Basic
==============

Cookbook example for `cerebras/basic.py`.
"""

import asyncio

from agno.agent import Agent
from agno.models.cerebras import Cerebras

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

agent = Agent(
    model=Cerebras(id="llama-3.3-70b"),
    markdown=True,
)

# Print the response in the terminal

# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
    # --- Sync ---
    agent.print_response("write a two sentence horror story")

    # --- Sync + Streaming ---
    agent.print_response("write a two sentence horror story", stream=True)

    # --- Async ---
    asyncio.run(agent.aprint_response("write a two sentence horror story"))

    # --- Async + Streaming ---
    asyncio.run(agent.aprint_response("write a two sentence horror story", 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
    ```
  </Step>

  <Step title="Export your Cerebras 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-3.3-70b` with `gpt-oss-120b` in the saved Python file before running.
  </Step>

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

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

Full source: [cookbook/90\_models/cerebras/basic.py](https://github.com/agno-agi/agno/blob/main/cookbook/90_models/cerebras/basic.py)
