mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-04 12:07:34 +00:00
# What does this PR do? <!-- Provide a short summary of what this PR does and why. Link to relevant issues if applicable. --> <!-- If resolving an issue, uncomment and update the line below --> <!-- Closes #[issue-number] --> - Updates provider and distro codegen to handle the new format - Migrates provider and distro files to the new format ## Test Plan - Manual testing <!-- Describe the tests you ran to verify your changes with result summaries. *Provide clear instructions so the plan can be easily re-executed.* -->
25 lines
713 B
Text
25 lines
713 B
Text
---
|
|
description: "Databricks inference provider for running models on Databricks' unified analytics platform."
|
|
sidebar_label: Remote - Databricks
|
|
title: remote::databricks
|
|
---
|
|
|
|
# remote::databricks
|
|
|
|
## Description
|
|
|
|
Databricks inference provider for running models on Databricks' unified analytics platform.
|
|
|
|
## Configuration
|
|
|
|
| Field | Type | Required | Default | Description |
|
|
|-------|------|----------|---------|-------------|
|
|
| `url` | `<class 'str'>` | No | | The URL for the Databricks model serving endpoint |
|
|
| `api_token` | `<class 'pydantic.types.SecretStr'>` | No | | The Databricks API token |
|
|
|
|
## Sample Configuration
|
|
|
|
```yaml
|
|
url: ${env.DATABRICKS_HOST:=}
|
|
api_token: ${env.DATABRICKS_TOKEN:=}
|
|
```
|