Merge pull request #532 from with1874/main

Fix Chinese garbled characters
このコミットが含まれているのは:
xtekky 2023-05-28 01:39:37 +01:00 committed by GitHub
コミット ebc10fa465
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更1行の追加1行の削除

ファイルの表示

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