From a50352091ac27b6610816ae5f53edbdfb7d90cb0 Mon Sep 17 00:00:00 2001 From: with1874 <1624402468@qq.com> Date: Wed, 10 May 2023 12:53:20 +0800 Subject: Fix Chinese garbled characters --- 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 2dba0a7b..1626d4c0 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('unicode-escape') + escaped = answer.encode('utf-8').decode('utf-8') # Display answer st.caption("Answer :") st.markdown(escaped) -- cgit v1.2.3