Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ AppKit's power comes from its plugin system. Each plugin adds a focused capabili
### Available now

- **Analytics Plugin** — Query your Lakehouse data directly from your app. Define SQL queries as files, execute them against Databricks SQL Warehouses, and get automatic caching, parameterization, and on-behalf-of user execution out of the box. Perfect for building apps that surface insights from your Lakehouse.
- **Genie Plugin** — Conversational AI interface powered by Databricks AI/BI Genie. Let users ask natural language questions against your data and get answers with automatic chart inference and visualization.

### Coming soon

- **Genie Plugin** — Conversational AI interface powered by Databricks Genie
- **Files Plugin** — Browse, upload, and manage files in Unity Catalog Volumes
- **Lakebase Plugin** — OLTP database operations with automatic OAuth token management
- ...and this is just the beginning.
Expand Down
Binary file added docs/docs/plugins/assets/genie-chat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/docs/plugins/assets/genie-space-id.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions docs/docs/plugins/genie.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,16 @@ genie({

If you omit `spaces`, the plugin reads `DATABRICKS_GENIE_SPACE_ID` from the environment and registers it under the `default` alias.

### Finding your Genie Space ID

You can find the Space ID from the **About** tab on your Genie space page in Databricks:

<div style={{maxWidth: 400}}>

![Genie Space ID in the About tab](./assets/genie-space-id.png)

</div>

## Environment variables

| Variable | Description |
Expand Down Expand Up @@ -117,6 +127,8 @@ The `@databricks/appkit-ui` package provides ready-to-use React components for G

A full-featured chat interface that handles streaming, history, and reconnection:

![GenieChat component](./assets/genie-chat.png)

```tsx
import { GenieChat } from "@databricks/appkit-ui/react";

Expand Down
Loading