sidmanale643 commited on
Commit
fdd078a
·
verified ·
1 Parent(s): 13e66cb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -6
app.py CHANGED
@@ -446,13 +446,15 @@ if st.button("Fetch Sentiment Data"):
446
  }
447
 
448
 
449
- if audio_data:
450
- st.subheader("Company Name")
451
- st.write(output_dict.get("company_name"))
452
-
453
- st.subheader("Final Report")
454
- st.write(output_dict.get("final_report"))
455
 
 
 
 
 
 
456
  with st.spinner("Generating audio..."):
457
  st.audio(audio_data, format="audio/mp3")
458
  else:
 
446
  }
447
 
448
 
449
+
450
+ st.subheader("Company Name")
451
+ st.write(output_dict.get("company_name"))
 
 
 
452
 
453
+ st.subheader("Final Report")
454
+ st.write(output_dict.get("final_report"))
455
+
456
+ if audio_data:
457
+ st.write(audio_data)
458
  with st.spinner("Generating audio..."):
459
  st.audio(audio_data, format="audio/mp3")
460
  else: