Skip to content

Commit e1d60c0

Browse files
authored
Merge pull request #8 from pbv0/dev-genie-api
- Genie API - Dependency Upgrades
2 parents 22bc70c + a518e73 commit e1d60c0

File tree

9 files changed

+587
-170
lines changed

9 files changed

+587
-170
lines changed

dash/app.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ def create_sidebar():
4141
'Run vector search'
4242
],
4343
'Business Intelligence': [
44-
'AI/BI Dashboard'
44+
'AI/BI Dashboard',
45+
'Genie'
4546
],
4647
'Workflows': [
4748
'Trigger a job',
@@ -65,6 +66,7 @@ def create_sidebar():
6566
'Invoke a model': 'material-symbols:model-training',
6667
'Run vector search': 'material-symbols:search',
6768
'AI/BI Dashboard': 'material-symbols:dashboard',
69+
'Genie': 'material-symbols:chat',
6870
'Trigger a job': 'material-symbols:play-circle',
6971
'Retrieve job results': 'material-symbols:list-alt',
7072
'Connect': 'material-symbols:link',

dash/pages/embed_dashboard.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
from dash import html, dcc, callback, Input, Output, State
1+
from dash import html, dcc, callback, Input, Output
22
import dash_bootstrap_components as dbc
33
import dash
44

55
# pages/embed_dashboard.py
66
dash.register_page(
77
__name__,
8-
path="/genie/api",
9-
title="Genie API",
8+
path="/bi/dashboard",
9+
title="AI/BI Dashboard",
1010
name="AI/BI Dashboard",
1111
category="Business Intelligence",
1212
icon="material-symbols:dashboard",

0 commit comments

Comments
 (0)