feat(opencode): Add Databricks provider support #7984
+783
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Adds Databricks Foundation Model APIs as a new provider, enabling opencode users to connect to their Databricks workspace's pay-per-token LLM endpoints.
Fixes #7983
Changes
provider.ts): Full Databricks provider with OpenAI-compatible endpoint support at/serving-endpointsauth.ts): Added Databricks to auth login flow with clear authentication instructionspreload.ts): Clear Databricks env vars between testsdatabricks.test.ts): 12 tests covering config parsing, auth precedence, URL handling, and model capabilitiesAuthentication Methods
Supports three auth methods (in priority order):
DATABRICKS_TOKENoropencode auth loginDATABRICKS_CLIENT_ID+DATABRICKS_CLIENT_SECRETARM_CLIENT_ID+ARM_CLIENT_SECRET+ARM_TENANT_IDDefault Models
Includes default definitions for common Foundation Model API endpoints (Claude, Llama, GPT-5, Gemini). Users can add custom model endpoints via
opencode.json.Verification
bun test packages/opencode/test/provider/databricks.test.ts