Update app.py
Browse files
app.py
CHANGED
@@ -69,11 +69,10 @@ with col2:
|
|
69 |
|
70 |
# Output display in the third column
|
71 |
with col3:
|
|
|
72 |
if 'output' in st.session_state and st.session_state.output:
|
73 |
-
st.subheader("Output:")
|
74 |
st.markdown(f'<div class="output">{st.session_state.output}</div>', unsafe_allow_html=True)
|
75 |
if 'error' in st.session_state and st.session_state.error:
|
76 |
-
st.subheader("Error:")
|
77 |
st.markdown(f'<div class="error">{st.session_state.error}</div>', unsafe_allow_html=True)
|
78 |
|
79 |
# Optional file upload (if needed)
|
|
|
69 |
|
70 |
# Output display in the third column
|
71 |
with col3:
|
72 |
+
st.subheader("Output:")
|
73 |
if 'output' in st.session_state and st.session_state.output:
|
|
|
74 |
st.markdown(f'<div class="output">{st.session_state.output}</div>', unsafe_allow_html=True)
|
75 |
if 'error' in st.session_state and st.session_state.error:
|
|
|
76 |
st.markdown(f'<div class="error">{st.session_state.error}</div>', unsafe_allow_html=True)
|
77 |
|
78 |
# Optional file upload (if needed)
|