mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-05 00:01:00 +00:00
Merge pull request #532 from with1874/main
Fix Chinese garbled characters
This commit is contained in:
commit
ebc10fa465
@ -38,7 +38,7 @@ st.header('GPT4free GUI')
|
|||||||
question_text_area = st.text_area('🤖 Ask Any Question :', placeholder='Explain quantum computing in 50 words')
|
question_text_area = st.text_area('🤖 Ask Any Question :', placeholder='Explain quantum computing in 50 words')
|
||||||
if st.button('🧠 Think'):
|
if st.button('🧠 Think'):
|
||||||
answer = get_answer(question_text_area)
|
answer = get_answer(question_text_area)
|
||||||
escaped = answer.encode('utf-8').decode('unicode-escape')
|
escaped = answer.encode('utf-8').decode('utf-8')
|
||||||
# Display answer
|
# Display answer
|
||||||
st.caption("Answer :")
|
st.caption("Answer :")
|
||||||
st.markdown(escaped)
|
st.markdown(escaped)
|
||||||
|
Loading…
Reference in New Issue
Block a user