Spaces:
Sleeping
Sleeping
Commit
Β·
82b38e9
1
Parent(s):
1c798e7
hooha
Browse files- README.md +1 -1
- __pycache__/utils.cpython-310.pyc +0 -0
- pages/3_π€_Chatbot.py +3 -2
README.md
CHANGED
@@ -5,7 +5,7 @@ colorFrom: pink
|
|
5 |
colorTo: green
|
6 |
sdk: streamlit
|
7 |
sdk_version: 1.21.0
|
8 |
-
app_file:
|
9 |
pinned: false
|
10 |
---
|
11 |
|
|
|
5 |
colorTo: green
|
6 |
sdk: streamlit
|
7 |
sdk_version: 1.21.0
|
8 |
+
app_file: π_Introduction.py
|
9 |
pinned: false
|
10 |
---
|
11 |
|
__pycache__/utils.cpython-310.pyc
CHANGED
Binary files a/__pycache__/utils.cpython-310.pyc and b/__pycache__/utils.cpython-310.pyc differ
|
|
pages/3_π€_Chatbot.py
CHANGED
@@ -69,7 +69,7 @@ else:
|
|
69 |
try:
|
70 |
# if st.button('Say hello'):
|
71 |
# st.write('Why hello there')
|
72 |
-
|
73 |
# container for chat history
|
74 |
response_container = st.container()
|
75 |
# container for text box
|
@@ -102,4 +102,5 @@ else:
|
|
102 |
if i < len(st.session_state['requests']):
|
103 |
message(st.session_state["requests"][i], is_user=True,key=str(i)+ '_user')
|
104 |
except Exception as error_message:
|
105 |
-
|
|
|
|
69 |
try:
|
70 |
# if st.button('Say hello'):
|
71 |
# st.write('Why hello there')
|
72 |
+
|
73 |
# container for chat history
|
74 |
response_container = st.container()
|
75 |
# container for text box
|
|
|
102 |
if i < len(st.session_state['requests']):
|
103 |
message(st.session_state["requests"][i], is_user=True,key=str(i)+ '_user')
|
104 |
except Exception as error_message:
|
105 |
+
print(error_message)
|
106 |
+
st.error("Error occured. Check your Credentials")
|