Spaces:
Sleeping
Sleeping
Nikhil0987
commited on
Commit
·
c910970
1
Parent(s):
3b5377c
HELLO
Browse files
chat.py
CHANGED
@@ -21,6 +21,10 @@ def Chat():
|
|
21 |
else:
|
22 |
with st.chat_message("assistant"):
|
23 |
chitchat
|
|
|
|
|
|
|
|
|
24 |
|
25 |
|
26 |
|
|
|
21 |
else:
|
22 |
with st.chat_message("assistant"):
|
23 |
chitchat
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
|
29 |
|
30 |
|
home.py
CHANGED
@@ -13,7 +13,7 @@ def dashboard():
|
|
13 |
# st.header("Dashboard")
|
14 |
|
15 |
with st.sidebar:
|
16 |
-
selected = option_menu("Menu", ["Home", "Dashboard","Chat","Conversation","Logout"], icons=['house', 'activity'], menu_icon="cast", default_index=0)
|
17 |
if selected == "Home":
|
18 |
homepage()
|
19 |
|
@@ -26,6 +26,8 @@ def dashboard():
|
|
26 |
elif selected == "Logout":
|
27 |
st.session_state["user"] = "visitor"
|
28 |
st.experimental_rerun()
|
|
|
|
|
29 |
|
30 |
|
31 |
|
|
|
13 |
# st.header("Dashboard")
|
14 |
|
15 |
with st.sidebar:
|
16 |
+
selected = option_menu("Menu", ["Home", "Dashboard","Chat","Remainder","Conversation","Logout"], icons=['house', 'activity'], menu_icon="cast", default_index=0)
|
17 |
if selected == "Home":
|
18 |
homepage()
|
19 |
|
|
|
26 |
elif selected == "Logout":
|
27 |
st.session_state["user"] = "visitor"
|
28 |
st.experimental_rerun()
|
29 |
+
elif selected == "Remainder":
|
30 |
+
findNumber()
|
31 |
|
32 |
|
33 |
|