mirror of
https://github.com/langgenius/dify-official-plugins.git
synced 2026-07-21 17:45:23 -04:00
[PR #2196] [CLOSED] Plugin/databricks #2316
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/langgenius/dify-official-plugins/pull/2196
Author: @joyaung
Created: 12/7/2025
Status: ❌ Closed
Base:
main← Head:plugin/databricks📝 Commits (10+)
30b76a6initialized databricks model plugine3e0d65update provider configuration with correct credentials168cd00feat(databricks): add basic LLM implementation with credential validation40f0e6afeat(databricks): add core invoke functionality with non-streaming support803dee2feat(databricks): add streaming support375a6e9feat(databricks): add predefined model and update configurationef1a23bfeat(databricks): add Claude 4 models and fix parameter configurations7ada108removed unsupported features (will be implemented later)0f1da15fix(databricks): updated max_tokens limits and added docse06b4b0removed template guide document📊 Changes
18 files changed (+1007 additions, -0 deletions)
View changed files
➕
models/databricks/.difyignore(+184 -0)➕
models/databricks/.env.example(+3 -0)➕
models/databricks/.gitignore(+179 -0)➕
models/databricks/README.md(+9 -0)➕
models/databricks/_assets/databricks-configure.png(+0 -0)➕
models/databricks/_assets/databricks-logo-l.png(+0 -0)➕
models/databricks/_assets/databricks-logo.svg(+1 -0)➕
models/databricks/main.py(+6 -0)➕
models/databricks/manifest.yaml(+29 -0)➕
models/databricks/models/llm/__init__.py(+0 -0)➕
models/databricks/models/llm/databricks-claude-3-7-sonnet.yaml(+26 -0)➕
models/databricks/models/llm/databricks-claude-opus-4-1.yaml(+26 -0)➕
models/databricks/models/llm/databricks-claude-sonnet-4-5.yaml(+24 -0)➕
models/databricks/models/llm/databricks-claude-sonnet-4.yaml(+26 -0)➕
models/databricks/models/llm/llm.py(+417 -0)➕
models/databricks/provider/databricks.py(+28 -0)➕
models/databricks/provider/databricks.yaml(+48 -0)➕
models/databricks/requirements.txt(+1 -0)📄 Description
Related Issues or Context
This PR adds a new official Databricks model plugin that enables integration with models deployed on Databricks Model Serving endpoints. Currently, only Claude models are added. Gemini, OpenAI and custom models will be added in the future.
PR will close #2119.
This PR contains Changes to Non-Plugin
This PR contains Changes to Non-LLM Models Plugin
This PR contains Changes to LLM Models Plugin
Version Control (Any Changes to the Plugin Will Require Bumping the Version)
VersionField, Not in Meta Section)Dify Plugin SDK Version
dify_plugin>=0.3.0,<0.6.0is in requirements.txt (SDK docs)Environment Verification (If Any Code Changes)
Local Deployment Environment
SaaS Environment
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.