CosmoAI commited on
Commit
88ec288
Β·
1 Parent(s): 76cf390

Update Home.py

Browse files
Files changed (1) hide show
  1. Home.py +42 -32
Home.py CHANGED
@@ -3,33 +3,40 @@ from streamlit_option_menu import option_menu
3
 
4
 
5
  def homepage():
6
- st.write("Home")
7
- st.write("Welcome to the homepage")
 
 
 
 
 
 
 
8
 
9
 
10
  def chat():
11
  st.write("Chat")
12
  st.write("Welcome to the chat page")
13
 
14
- def invoke_document():
15
- st.write("Invoke Document")
16
- st.write("Welcome to the invoke document page")
17
 
18
- def invoke_audio():
19
- st.write("Invoke Audio")
20
- st.write("Welcome to the invoke audio page")
21
 
22
- def invoke_video():
23
- st.write("Invoke Video")
24
- st.write("Welcome to the invoke video page")
25
 
26
- def invoke_image():
27
- st.write("Invoke Image")
28
- st.write("Welcome to the invoke image page")
29
 
30
- def invoke_text():
31
- st.write("Invoke Text")
32
- st.write("Welcome to the invoke text page")
33
 
34
 
35
 
@@ -37,20 +44,23 @@ def invoke_text():
37
  def dashboard():
38
 
39
  with st.sidebar:
40
- selected = option_menu(None, ['Home', 'Chat', "Invoke Document", "Invoke Audio", "Invoke Video", "Invoke Image", "Invoke Text"],
41
  icons=['🏠', 'πŸ’¬', "πŸ“„", "πŸ”Š", "πŸŽ₯", "πŸ–ΌοΈ", "πŸ“"])
42
- if selected == 'Home':
43
- homepage()
44
- elif selected == 'Chat':
45
- chat()
46
- elif selected == "Invoke Document":
47
- invoke_document()
48
- elif selected == "Invoke Audio":
49
- invoke_audio()
50
- elif selected == "Invoke Video":
51
- invoke_video()
52
- elif selected == "Invoke Image":
53
- invoke_image()
54
- elif selected == "Invoke Text":
55
- invoke_text()
 
 
 
56
 
 
3
 
4
 
5
  def homepage():
6
+ st.write("Timeline")
7
+ allmessages =[]
8
+ if "messages" not in st.session_state:
9
+ st.session_state.messages = []
10
+
11
+ if usrmsg := st.chat_input("Share a thought"):
12
+ allmessages = st.session_state.messages.append(usrmsg)
13
+ with st.chat_message("user")
14
+ allmessages
15
 
16
 
17
  def chat():
18
  st.write("Chat")
19
  st.write("Welcome to the chat page")
20
 
21
+ # def invoke_document():
22
+ # st.write("Invoke Document")
23
+ # st.write("Welcome to the invoke document page")
24
 
25
+ # def invoke_audio():
26
+ # st.write("Invoke Audio")
27
+ # st.write("Welcome to the invoke audio page")
28
 
29
+ # def invoke_video():
30
+ # st.write("Invoke Video")
31
+ # st.write("Welcome to the invoke video page")
32
 
33
+ # def invoke_image():
34
+ # st.write("Invoke Image")
35
+ # st.write("Welcome to the invoke image page")
36
 
37
+ # def invoke_text():
38
+ # st.write("Invoke Text")
39
+ # st.write("Welcome to the invoke text page")
40
 
41
 
42
 
 
44
  def dashboard():
45
 
46
  with st.sidebar:
47
+ selected = option_menu(None, ['Home', 'Chat', "Logout"],
48
  icons=['🏠', 'πŸ’¬', "πŸ“„", "πŸ”Š", "πŸŽ₯", "πŸ–ΌοΈ", "πŸ“"])
49
+ if selected == 'Home':
50
+ homepage()
51
+ elif selected == 'Chat':
52
+ chat()
53
+ elif selected == 'Logout':
54
+ st.session_state.user = None
55
+ st.experimental_rerun()
56
+ # elif selected == "Invoke Document":
57
+ # invoke_document()
58
+ # elif selected == "Invoke Audio":
59
+ # invoke_audio()
60
+ # elif selected == "Invoke Video":
61
+ # invoke_video()
62
+ # elif selected == "Invoke Image":
63
+ # invoke_image()
64
+ # elif selected == "Invoke Text":
65
+ # invoke_text()
66