Spaces:
Runtime error
Runtime error
Adrien
commited on
Commit
•
197c0a4
1
Parent(s):
b1c91af
fixes
Browse files
app.py
CHANGED
@@ -44,6 +44,8 @@ if "feedback_interface" not in st.session_state:
|
|
44 |
|
45 |
with st.container(border=True):
|
46 |
container = st.empty()
|
|
|
|
|
47 |
container2 = st.empty()
|
48 |
|
49 |
container.markdown(st.session_state.content)
|
@@ -88,6 +90,7 @@ with st.sidebar:
|
|
88 |
status.update(label="Evaluation complete!", state="complete")
|
89 |
container2.markdown(evaluation)
|
90 |
|
|
|
91 |
if st.session_state.feedback_interface:
|
92 |
with st.container(border=True):
|
93 |
messages = st.container(height=300)
|
|
|
44 |
|
45 |
with st.container(border=True):
|
46 |
container = st.empty()
|
47 |
+
|
48 |
+
with st.container(border=True):
|
49 |
container2 = st.empty()
|
50 |
|
51 |
container.markdown(st.session_state.content)
|
|
|
90 |
status.update(label="Evaluation complete!", state="complete")
|
91 |
container2.markdown(evaluation)
|
92 |
|
93 |
+
|
94 |
if st.session_state.feedback_interface:
|
95 |
with st.container(border=True):
|
96 |
messages = st.container(height=300)
|