Update web-ui.py
Browse files
web-ui.py
CHANGED
@@ -48,7 +48,8 @@ if len(history) == 0:
|
|
48 |
|
49 |
for idx, (question, answer) in enumerate(history):
|
50 |
message(question, is_user=True, key=f"history_question_{idx}")
|
51 |
-
|
|
|
52 |
|
53 |
|
54 |
next_answer = st.container()
|
|
|
48 |
|
49 |
for idx, (question, answer) in enumerate(history):
|
50 |
message(question, is_user=True, key=f"history_question_{idx}")
|
51 |
+
st.write(answer)
|
52 |
+
st.markdown("---")
|
53 |
|
54 |
|
55 |
next_answer = st.container()
|