DBRX Chatbot is an open-source AI chatbot application developed using the DBRX instruction API.
Visit the DBRX Chatbot Demo Site
You need an active Databricks workspace and and access token.
Refer to the Environment Variables section for necessary environment variables.
Click the button below to deploy on Vercel:
docker run -d -p 3000:3000 \
-e DATABRICKS_WORKSPACE_URL="<REPLACE-ME>" \
-e DATABRICKS_TOKEN="<REPLACE-ME>" \
blrchen/dbrx-chatbot
- Install NodeJS 20.
- Clone the repository.
- Install dependencies with
npm install
. - Copy
.env.example
to.env.local
and update environment variables. - Start the application using
npm run dev
. - Visit
http://localhost:3000
in your browser.
Required environment variables:
Name | Description |
---|---|
DATABRICKS_WORKSPACE_URL | Your Databricks workspace URL. For example, https://adb-3046417392244956.16.azuredatabricks.net . |
DATABRICKS_TOKEN | Your Databricks access token. |
PRs of all sizes are welcome.