mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-03 19:57:35 +00:00
We don't need this if we can set it to empty string. Signed-off-by: Sébastien Han <seb@redhat.com>
25 lines
673 B
Text
25 lines
673 B
Text
---
|
|
description: "Cerebras inference provider for running models on Cerebras Cloud platform."
|
|
sidebar_label: Remote - Cerebras
|
|
title: remote::cerebras
|
|
---
|
|
|
|
# remote::cerebras
|
|
|
|
## Description
|
|
|
|
Cerebras inference provider for running models on Cerebras Cloud platform.
|
|
|
|
## Configuration
|
|
|
|
| Field | Type | Required | Default | Description |
|
|
|-------|------|----------|---------|-------------|
|
|
| `base_url` | `<class 'str'>` | No | https://api.cerebras.ai | Base URL for the Cerebras API |
|
|
| `api_key` | `<class 'pydantic.types.SecretStr'>` | No | | Cerebras API Key |
|
|
|
|
## Sample Configuration
|
|
|
|
```yaml
|
|
base_url: https://api.cerebras.ai
|
|
api_key: ${env.CEREBRAS_API_KEY:=}
|
|
```
|