diff options
author | xtekky <98614666+xtekky@users.noreply.github.com> | 2023-06-05 22:49:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-05 22:49:00 +0200 |
commit | 3c5eccb6b046a14618410490bf50c8a54b0f6fb6 (patch) | |
tree | 273dacd93dd0bf62c4f789a46dc6a7ed078a134a | |
parent | A major update is to come in the next days (statement written 4 Jun) (diff) | |
parent | Update streamlit_app.py (diff) | |
download | gpt4free-3c5eccb6b046a14618410490bf50c8a54b0f6fb6.tar gpt4free-3c5eccb6b046a14618410490bf50c8a54b0f6fb6.tar.gz gpt4free-3c5eccb6b046a14618410490bf50c8a54b0f6fb6.tar.bz2 gpt4free-3c5eccb6b046a14618410490bf50c8a54b0f6fb6.tar.lz gpt4free-3c5eccb6b046a14618410490bf50c8a54b0f6fb6.tar.xz gpt4free-3c5eccb6b046a14618410490bf50c8a54b0f6fb6.tar.zst gpt4free-3c5eccb6b046a14618410490bf50c8a54b0f6fb6.zip |
-rw-r--r-- | gui/streamlit_app.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/streamlit_app.py b/gui/streamlit_app.py index 1626d4c0..2dba0a7b 100644 --- a/gui/streamlit_app.py +++ b/gui/streamlit_app.py @@ -38,7 +38,7 @@ st.header('GPT4free GUI') question_text_area = st.text_area('🤖 Ask Any Question :', placeholder='Explain quantum computing in 50 words') if st.button('🧠Think'): answer = get_answer(question_text_area) - escaped = answer.encode('utf-8').decode('utf-8') + escaped = answer.encode('utf-8').decode('unicode-escape') # Display answer st.caption("Answer :") st.markdown(escaped) |