diff options
author | xtekky <98614666+xtekky@users.noreply.github.com> | 2023-05-28 02:39:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-28 02:39:37 +0200 |
commit | ebc10fa465adc32b165afa5f968e4fb6bf26a8ea (patch) | |
tree | bfd390b821ff64f79068af5886408de262163037 | |
parent | Merge pull request #610 from ggindinson/main (diff) | |
parent | Fix Chinese garbled characters (diff) | |
download | gpt4free-ebc10fa465adc32b165afa5f968e4fb6bf26a8ea.tar gpt4free-ebc10fa465adc32b165afa5f968e4fb6bf26a8ea.tar.gz gpt4free-ebc10fa465adc32b165afa5f968e4fb6bf26a8ea.tar.bz2 gpt4free-ebc10fa465adc32b165afa5f968e4fb6bf26a8ea.tar.lz gpt4free-ebc10fa465adc32b165afa5f968e4fb6bf26a8ea.tar.xz gpt4free-ebc10fa465adc32b165afa5f968e4fb6bf26a8ea.tar.zst gpt4free-ebc10fa465adc32b165afa5f968e4fb6bf26a8ea.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 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) |