commit
8fe493a38a
1 changed files with 2 additions and 1 deletions
|
@ -37,9 +37,10 @@ question_text_area = st.text_area(
|
||||||
'🤖 Ask Any Question :', placeholder='Explain quantum computing in 50 words')
|
'🤖 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')
|
||||||
# Display answer
|
# Display answer
|
||||||
st.caption("Answer :")
|
st.caption("Answer :")
|
||||||
st.markdown(answer)
|
st.markdown(escaped)
|
||||||
|
|
||||||
# Hide Streamlit footer
|
# Hide Streamlit footer
|
||||||
hide_streamlit_style = """
|
hide_streamlit_style = """
|
||||||
|
|
Loading…
Reference in a new issue