From 60f1fe750059802d87336c9d46312745048d90d1 Mon Sep 17 00:00:00 2001 From: Alexey Rybak Date: Wed, 24 Sep 2025 10:06:13 -0700 Subject: [PATCH] fix: precommit hooks --- docs/docs/providers/inference/remote_databricks.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/providers/inference/remote_databricks.mdx b/docs/docs/providers/inference/remote_databricks.mdx index b5e99d4f2..7f736db9d 100644 --- a/docs/docs/providers/inference/remote_databricks.mdx +++ b/docs/docs/providers/inference/remote_databricks.mdx @@ -15,11 +15,11 @@ Databricks inference provider for running models on Databricks' unified analytic | Field | Type | Required | Default | Description | |-------|------|----------|---------|-------------| | `url` | `` | No | | The URL for the Databricks model serving endpoint | -| `api_token` | `` | No | | The Databricks API token | +| `api_token` | `` | No | | The Databricks API token | ## Sample Configuration ```yaml -url: ${env.DATABRICKS_URL:=} -api_token: ${env.DATABRICKS_API_TOKEN:=} +url: ${env.DATABRICKS_HOST:=} +api_token: ${env.DATABRICKS_TOKEN:=} ```