Update app.py
Browse files
app.py
CHANGED
@@ -446,13 +446,15 @@ if st.button("Fetch Sentiment Data"):
|
|
446 |
}
|
447 |
|
448 |
|
449 |
-
|
450 |
-
|
451 |
-
|
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:
|