Merge pull request #641 from 00randomize00/main

Rollback to #241 when handling special character
This commit is contained in:
xtekky 2023-06-05 22:49:00 +02:00 committed by GitHub
commit 3c5eccb6b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)