Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -3,6 +3,7 @@ import plotly.express as px
|
|
3 |
import pandas as pd
|
4 |
import numpy as np
|
5 |
from datetime import datetime, timedelta
|
|
|
6 |
|
7 |
# Page configuration
|
8 |
st.set_page_config(
|
@@ -94,19 +95,29 @@ def show_chat():
|
|
94 |
if user_input:
|
95 |
st.write("Bot: Thank you for your question! This feature will be implemented with LLAMA integration.")
|
96 |
|
|
|
|
|
97 |
def main():
|
98 |
-
|
99 |
|
100 |
-
#
|
101 |
-
|
102 |
-
|
103 |
-
"Analytics": show_analytics,
|
104 |
-
"Brainstorm": show_brainstorm,
|
105 |
-
"Chat": show_chat
|
106 |
-
}
|
107 |
|
108 |
-
|
109 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
|
111 |
if __name__ == "__main__":
|
112 |
main()
|
|
|
3 |
import pandas as pd
|
4 |
import numpy as np
|
5 |
from datetime import datetime, timedelta
|
6 |
+
from data_processor import render_analytics_page # This will be our analytics module
|
7 |
|
8 |
# Page configuration
|
9 |
st.set_page_config(
|
|
|
95 |
if user_input:
|
96 |
st.write("Bot: Thank you for your question! This feature will be implemented with LLAMA integration.")
|
97 |
|
98 |
+
|
99 |
+
|
100 |
def main():
|
101 |
+
st.set_page_config(page_title="Prospira", page_icon="📊", layout="wide")
|
102 |
|
103 |
+
# Sidebar navigation
|
104 |
+
st.sidebar.title("Prospira Analytics")
|
105 |
+
page = st.sidebar.selectbox("Choose a page", ["Dashboard", "Data Analytics", "Brainstorm", "Chat"])
|
|
|
|
|
|
|
|
|
106 |
|
107 |
+
if page == "Dashboard":
|
108 |
+
st.title("Dashboard")
|
109 |
+
st.write("Main dashboard content here")
|
110 |
+
|
111 |
+
elif page == "Data Analytics":
|
112 |
+
render_analytics_page()
|
113 |
+
|
114 |
+
elif page == "Brainstorm":
|
115 |
+
st.title("Brainstorm")
|
116 |
+
st.write("Brainstorm feature coming soon")
|
117 |
+
|
118 |
+
elif page == "Chat":
|
119 |
+
st.title("Chat")
|
120 |
+
st.write("Chat feature coming soon")
|
121 |
|
122 |
if __name__ == "__main__":
|
123 |
main()
|