CosmoAI commited on
Commit
63ab97b
Β·
1 Parent(s): e0569d4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +65 -53
app.py CHANGED
@@ -1,55 +1,67 @@
1
  import streamlit as st
2
- from hugchat import hugchat
3
- from hugchat.login import Login
4
-
5
- # App title
6
- st.set_page_config(page_title="πŸ€—πŸ’¬ HugChat")
7
-
8
- # Hugging Face Credentials
9
- with st.sidebar:
10
- st.title('πŸ€—πŸ’¬ HugChat')
11
- if ('EMAIL' in st.secrets) and ('PASS' in st.secrets):
12
- st.success('HuggingFace Login credentials already provided!', icon='βœ…')
13
- hf_email = st.secrets['EMAIL']
14
- hf_pass = st.secrets['PASS']
15
- else:
16
- hf_email = st.text_input('Enter E-mail:', type='password')
17
- hf_pass = st.text_input('Enter password:', type='password')
18
- if not (hf_email and hf_pass):
19
- st.warning('Please enter your credentials!', icon='⚠️')
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  else:
21
- st.success('Proceed to entering your prompt message!', icon='πŸ‘‰')
22
- st.markdown('πŸ“– Learn how to build this app in this [blog](https://blog.streamlit.io/how-to-build-an-llm-powered-chatbot-with-streamlit/)!')
23
-
24
- # Store LLM generated responses
25
- if "messages" not in st.session_state.keys():
26
- st.session_state.messages = [{"role": "assistant", "content": "How may I help you?"}]
27
-
28
- # Display chat messages
29
- for message in st.session_state.messages:
30
- with st.chat_message(message["role"]):
31
- st.write(message["content"])
32
-
33
- # Function for generating LLM response
34
- def generate_response(prompt_input, email, passwd):
35
- # Hugging Face Login
36
- sign = Login(email, passwd)
37
- cookies = sign.login()
38
- # Create ChatBot
39
- chatbot = hugchat.ChatBot(cookies=cookies.get_dict())
40
- return chatbot.chat(prompt_input)
41
-
42
- # User-provided prompt
43
- if prompt := st.chat_input(disabled=not (hf_email and hf_pass)):
44
- st.session_state.messages.append({"role": "user", "content": prompt})
45
- with st.chat_message("user"):
46
- st.write(prompt)
47
-
48
- # Generate a new response if last message is not from assistant
49
- if st.session_state.messages[-1]["role"] != "assistant":
50
- with st.chat_message("assistant"):
51
- with st.spinner("Thinking..."):
52
- response = generate_response(prompt, hf_email, hf_pass)
53
- st.write(response)
54
- message = {"role": "assistant", "content": response}
55
- st.session_state.messages.append(message)
 
1
  import streamlit as st
2
+ from streamlit_option_menu import option_menu
3
+ import json
4
+ from Home import dashboard
5
+
6
+
7
+
8
+ st.page_config(page_title="Auth", page_icon=":lock:")
9
+
10
+
11
+ def loadfile():
12
+ with open("database/users.json") as file:
13
+ data = json.load(file)
14
+ return data
15
+
16
+ def savefile(data):
17
+ with open("database/users.json", "w") as file:
18
+ json.dump(data, file, indent=4)
19
+
20
+
21
+
22
+ def login():
23
+ st.write("Login")
24
+ username = st.text_input("Username")
25
+ password = st.text_input("Password", type="password")
26
+ if st.button("Login"):
27
+ data = loadfile()
28
+ if username in data:
29
+ if data[username]["password"] == password:
30
+ st.success("Logged In as {}".format(username))
31
+ st.session_state.user = username
32
+ else:
33
+ st.error("Wrong Password")
34
  else:
35
+ st.error("User not found")
36
+
37
+
38
+ def register():
39
+ st.write("Register")
40
+ username = st.text_input("Username")
41
+ password = st.text_input("Password", type="password")
42
+ if st.button("Register"):
43
+ data = loadfile()
44
+ if username in data:
45
+ st.error("User already exists")
46
+ else:
47
+ data[username] = {}
48
+ data[username]["password"] = password
49
+ savefile(data)
50
+ st.success("User created")
51
+
52
+
53
+
54
+
55
+ def main():
56
+ if 'user' not in st.session_state:
57
+ st.session_state.user = None
58
+
59
+ if st.session_state.user is None:
60
+ with st.sidebar:
61
+ selected = option_menu(None, ['Login', 'Register'])
62
+ if selected == 'Login':
63
+ login()
64
+ elif selected == 'Register':
65
+ register()
66
+ else:
67
+ dashboard()