Spaces:
Sleeping
Sleeping
Fix indentation in Streamlit app; ensure proper layout for expert analysis display
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
@@ -789,7 +789,7 @@ with tab2:
|
|
789 |
# Show explanation in a box
|
790 |
st.markdown("### Expert Analysis")
|
791 |
st.info(results['explanation'])
|
792 |
-
|
793 |
if results['audio_viz']:
|
794 |
try:
|
795 |
st.pyplot(results['audio_viz'])
|
|
|
789 |
# Show explanation in a box
|
790 |
st.markdown("### Expert Analysis")
|
791 |
st.info(results['explanation'])
|
792 |
+
with col2:
|
793 |
if results['audio_viz']:
|
794 |
try:
|
795 |
st.pyplot(results['audio_viz'])
|