From 70df8698c747622712be65b5560fab8341c91026 Mon Sep 17 00:00:00 2001 From: 00randomize00 <116192690+00randomize00@users.noreply.github.com> Date: Sun, 4 Jun 2023 21:09:43 +0800 Subject: Update streamlit_app.py --- gui/streamlit_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3