mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-04 04:04:14 +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
647 B
Text
25 lines
647 B
Text
---
|
|
description: "RunPod inference provider for running models on RunPod's cloud GPU platform."
|
|
sidebar_label: Remote - Runpod
|
|
title: remote::runpod
|
|
---
|
|
|
|
# remote::runpod
|
|
|
|
## Description
|
|
|
|
RunPod inference provider for running models on RunPod's cloud GPU platform.
|
|
|
|
## Configuration
|
|
|
|
| Field | Type | Required | Default | Description |
|
|
|-------|------|----------|---------|-------------|
|
|
| `url` | `str \| None` | No | | The URL for the Runpod model serving endpoint |
|
|
| `api_token` | `<class 'pydantic.types.SecretStr'>` | No | | The API token |
|
|
|
|
## Sample Configuration
|
|
|
|
```yaml
|
|
url: ${env.RUNPOD_URL:=}
|
|
api_token: ${env.RUNPOD_API_TOKEN}
|
|
```
|