1
0
Fork 0

Merge pull request #241 from ethanx40/main

escape unicode answer
This commit is contained in:
t.me/xtekky 2023-04-28 09:10:07 +01:00 committed by GitHub
commit 8fe493a38a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

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