@databricks/appkit-ui 0.20.1 → 0.20.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/docs/plugins/genie.md +8 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -32,10 +32,10 @@ AppKit's power comes from its plugin system. Each plugin adds a focused capabili
|
|
|
32
32
|
### Available now
|
|
33
33
|
|
|
34
34
|
- **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.
|
|
35
|
+
- **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.
|
|
35
36
|
|
|
36
37
|
### Coming soon
|
|
37
38
|
|
|
38
|
-
- **Genie Plugin** — Conversational AI interface powered by Databricks Genie
|
|
39
39
|
- **Files Plugin** — Browse, upload, and manage files in Unity Catalog Volumes
|
|
40
40
|
- **Lakebase Plugin** — OLTP database operations with automatic OAuth token management
|
|
41
41
|
- ...and this is just the beginning.
|
package/docs/plugins/genie.md
CHANGED
|
@@ -47,6 +47,12 @@ genie({
|
|
|
47
47
|
|
|
48
48
|
If you omit `spaces`, the plugin reads `DATABRICKS_GENIE_SPACE_ID` from the environment and registers it under the `default` alias.
|
|
49
49
|
|
|
50
|
+
### Finding your Genie Space ID[](#finding-your-genie-space-id "Direct link to Finding your Genie Space ID")
|
|
51
|
+
|
|
52
|
+
You can find the Space ID from the **About** tab on your Genie space page in Databricks:
|
|
53
|
+
|
|
54
|
+

|
|
55
|
+
|
|
50
56
|
## Environment variables[](#environment-variables "Direct link to Environment variables")
|
|
51
57
|
|
|
52
58
|
| Variable | Description |
|
|
@@ -119,6 +125,8 @@ The `@databricks/appkit-ui` package provides ready-to-use React components for G
|
|
|
119
125
|
|
|
120
126
|
A full-featured chat interface that handles streaming, history, and reconnection:
|
|
121
127
|
|
|
128
|
+

|
|
129
|
+
|
|
122
130
|
```tsx
|
|
123
131
|
import { GenieChat } from "@databricks/appkit-ui/react";
|
|
124
132
|
|