diff options
author | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-28 10:10:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-28 10:10:07 +0200 |
commit | 8fe493a38a647eb2958b3d283e6ec2d4ee67726f (patch) | |
tree | 499253c0c877c3e140f436b3c4e5a172be1b7128 | |
parent | Merge pull request #238 from Fubge/patch-1 (diff) | |
parent | need escape unicode answer to support Chinese (diff) | |
download | gpt4free-8fe493a38a647eb2958b3d283e6ec2d4ee67726f.tar gpt4free-8fe493a38a647eb2958b3d283e6ec2d4ee67726f.tar.gz gpt4free-8fe493a38a647eb2958b3d283e6ec2d4ee67726f.tar.bz2 gpt4free-8fe493a38a647eb2958b3d283e6ec2d4ee67726f.tar.lz gpt4free-8fe493a38a647eb2958b3d283e6ec2d4ee67726f.tar.xz gpt4free-8fe493a38a647eb2958b3d283e6ec2d4ee67726f.tar.zst gpt4free-8fe493a38a647eb2958b3d283e6ec2d4ee67726f.zip |
Diffstat (limited to '')
-rw-r--r-- | gui/streamlit_app.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/streamlit_app.py b/gui/streamlit_app.py index 4e0a618d..8251be2b 100644 --- a/gui/streamlit_app.py +++ b/gui/streamlit_app.py @@ -37,9 +37,10 @@ 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') # Display answer st.caption("Answer :") - st.markdown(answer) + st.markdown(escaped) # Hide Streamlit footer hide_streamlit_style = """ |