Fix Chinese garbled characters

This commit is contained in:
with1874 2023-05-10 12:53:20 +08:00 committed by GitHub
parent 217d20d98d
commit a50352091a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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('unicode-escape')
escaped = answer.encode('utf-8').decode('utf-8')
# Display answer
st.caption("Answer :")
st.markdown(escaped)