diff options
author | ethanx40 <93695126+ethanx40@users.noreply.github.com> | 2023-04-28 09:41:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-28 09:41:07 +0200 |
commit | ec33603bb7dd9f13049b114a093717dc7a399d28 (patch) | |
tree | c449a9fa5eb18feaa148cf5973b8580324cb1040 /gui/streamlit_app.py | |
parent | Update README.md (diff) | |
download | gpt4free-ec33603bb7dd9f13049b114a093717dc7a399d28.tar gpt4free-ec33603bb7dd9f13049b114a093717dc7a399d28.tar.gz gpt4free-ec33603bb7dd9f13049b114a093717dc7a399d28.tar.bz2 gpt4free-ec33603bb7dd9f13049b114a093717dc7a399d28.tar.lz gpt4free-ec33603bb7dd9f13049b114a093717dc7a399d28.tar.xz gpt4free-ec33603bb7dd9f13049b114a093717dc7a399d28.tar.zst gpt4free-ec33603bb7dd9f13049b114a093717dc7a399d28.zip |
Diffstat (limited to 'gui/streamlit_app.py')
-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 = """ |