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

# Cerebras

> Python API reference for the cerebras llm provider.

<Card title="Usage guide" icon="book" href="/plugins/llm/cerebras" horizontal>
  Setup, environment variables, and Python/JavaScript/Go usage examples.
</Card>

## CerebrasLLM

Cerebras LLM implementation using the Cerebras Cloud SDK.

Slot: llm. Route: plugins -- direct to the vendor, with CEREBRAS\_API\_KEY or
an explicit api\_key.

```python theme={null}
from zeroruntime.plugins import CerebrasLLM  # direct to the vendor, with your key
```

### Fields

<ParamField path="model" type="str" default="llama3.3-70b" />

<ParamField path="temperature" type="float" default="0.7" />

<ParamField path="tool_choice" type="Literal['auto', 'required', 'none']" default="UNSET" />

<ParamField path="max_completion_tokens" type="int | None" default="None" />

<ParamField path="top_p" type="float | None" default="None" />

<ParamField path="seed" type="int | None" default="None" />

<ParamField path="stop" type="str | None" default="None" />

<ParamField path="user" type="str | None" default="None" />
