Wajahat698 commited on
Commit
0cf6b0f
·
verified ·
1 Parent(s): 5bc4f2a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -491,8 +491,10 @@ if prompt :
491
  "chat_history": st.session_state.chat_history
492
  })
493
  full_response = output["output"]
 
 
 
494
 
495
- st.write(full_response.replace("*", "").replace("_", "").replace("**", "").replace("__", ""))
496
 
497
  # Display the response
498
 
 
491
  "chat_history": st.session_state.chat_history
492
  })
493
  full_response = output["output"]
494
+
495
+
496
+ st.markdown(full_response, unsafe_allow_html=True)
497
 
 
498
 
499
  # Display the response
500