Update pages/Web-chat.py
Browse files- pages/Web-chat.py +0 -4
pages/Web-chat.py
CHANGED
|
@@ -9,9 +9,6 @@ with open('styles.css') as f:
|
|
| 9 |
|
| 10 |
st.markdown(f'<style>{css}</style>', unsafe_allow_html=True)
|
| 11 |
|
| 12 |
-
# Setup Logging
|
| 13 |
-
setup_logging()
|
| 14 |
-
|
| 15 |
## LOGO and TITLE
|
| 16 |
## -------------------------------------------------------------------------------------------
|
| 17 |
# Show the logo and title side by side
|
|
@@ -73,5 +70,4 @@ if question is not None:
|
|
| 73 |
formatted_response = utils.format_response(response.text)
|
| 74 |
st.markdown(formatted_response)
|
| 75 |
except Exception as e:
|
| 76 |
-
log_error(e)
|
| 77 |
st.switch_page("error.py")
|
|
|
|
| 9 |
|
| 10 |
st.markdown(f'<style>{css}</style>', unsafe_allow_html=True)
|
| 11 |
|
|
|
|
|
|
|
|
|
|
| 12 |
## LOGO and TITLE
|
| 13 |
## -------------------------------------------------------------------------------------------
|
| 14 |
# Show the logo and title side by side
|
|
|
|
| 70 |
formatted_response = utils.format_response(response.text)
|
| 71 |
st.markdown(formatted_response)
|
| 72 |
except Exception as e:
|
|
|
|
| 73 |
st.switch_page("error.py")
|