[appkit plugin] [7/x] Add default-ui playground for @databricks/appkit-agent#392
Open
hubertzub-db wants to merge 17 commits intodatabricks:mainfrom
Open
[appkit plugin] [7/x] Add default-ui playground for @databricks/appkit-agent#392hubertzub-db wants to merge 17 commits intodatabricks:mainfrom
hubertzub-db wants to merge 17 commits intodatabricks:mainfrom
Conversation
This was referenced Mar 24, 2026
a63da39 to
452d58c
Compare
452d58c to
a78973e
Compare
cc15a70 to
3e6500c
Compare
3 tasks
bbqiu
reviewed
Mar 31, 2026
Comment on lines
+12
to
+14
| "@databricks/langchainjs": "^0.1.0", | ||
| "@langchain/core": "^1.1.33", | ||
| "@langchain/langgraph": "^1.2.2", |
Collaborator
There was a problem hiding this comment.
do we need these for the UI?
Collaborator
There was a problem hiding this comment.
same with the postgres packages
bbqiu
reviewed
Mar 31, 2026
| @@ -0,0 +1,3 @@ | |||
| env: | |||
| - name: DATABRICKS_MODEL | |||
Collaborator
There was a problem hiding this comment.
i don't 100% understand the plugin ecosystem that well, but when we eventually want to switch the e2e template over to be using this, will we not have to include default startup commands in the app.yaml?
bbqiu
approved these changes
Mar 31, 2026
Collaborator
bbqiu
left a comment
There was a problem hiding this comment.
lgtm after removing unused dependencies
Move agent plugin source code into src/agent-plugin/ subfolder for better organization when hosting multiple plugins.
Signed-off-by: Hubert Zub <hubert.zub@databricks.com>
Signed-off-by: Hubert Zub <hubert.zub@databricks.com>
Signed-off-by: Hubert Zub <hubert.zub@databricks.com>
Add per-package pnpm-lock.yaml and CI/release workflows with explicit pnpm version and cache-dependency-path.
Signed-off-by: Hubert Zub <hubert.zub@databricks.com>
Signed-off-by: Hubert Zub <hubert.zub@databricks.com>
Signed-off-by: Hubert Zub <hubert.zub@databricks.com>
3e6500c to
9653cad
Compare
Signed-off-by: Hubert Zub <hubert.zub@databricks.com>
Signed-off-by: Hubert Zub <hubert.zub@databricks.com>
- Import ChatProvider + ChatPanel from @databricks/appkit-agent/chat-ui instead of building from scratch - Add react-router-dom and swr as custom-ui playground dependencies - Add ./chat-ui/styles.css export to package.json for CSS import - Simplify main.tsx entry point
9653cad to
ef5847e
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
🥞 Stacked PR
Summary
Adds a minimal playground app (
integrations/appkit-agent/playground/default-ui/) that demonstrates the agent + chat plugin stack with the bundled UI from p6. The playground is a server-only project — it imports@databricks/appkit-agentas a workspace dependency and useschat.staticAssetsPathto serve the pre-built chat client.This serves as a development testbed and a reference example for wiring the plugins together.
Playground setup
server/index.tsis the complete application:How to run
Other changes
.gitignore: added.envand.env.localto prevent committing secretssrc/chat-plugin/types.ts: duplicateautoMigratefield added during rebase (to be cleaned up)