need escape unicode answer to support Chinese

This commit is contained in:
ethanx40
2023-04-28 15:41:07 +08:00
committed by GitHub
parent 25428d58d5
commit ec33603bb7

View File

@@ -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 = """