Update web-ui.py
Browse files
web-ui.py
CHANGED
@@ -70,5 +70,6 @@ if st.button("发送") and len(question.strip()):
|
|
70 |
temperature=temperature,
|
71 |
):
|
72 |
st.write(answer)
|
|
|
73 |
|
74 |
st.session_state.history = history + [(question, answer)]
|
|
|
70 |
temperature=temperature,
|
71 |
):
|
72 |
st.write(answer)
|
73 |
+
st.markdown("---")
|
74 |
|
75 |
st.session_state.history = history + [(question, answer)]
|