Daniel Tse
commited on
Commit
·
690c95c
1
Parent(s):
0069484
Fix bug
Browse files
app.py
CHANGED
@@ -91,7 +91,7 @@ if st.button("Process Audio File"):
|
|
91 |
podcast_text = transcribe_audio("marketplace-2023-06-14.mp3")
|
92 |
#write text out
|
93 |
with st.expander("See Transcription"):
|
94 |
-
st.caption(podcast_text['text']
|
95 |
|
96 |
#Summarize Text
|
97 |
podcast_summary = summarize_podcast(podcast_text['text'])
|
|
|
91 |
podcast_text = transcribe_audio("marketplace-2023-06-14.mp3")
|
92 |
#write text out
|
93 |
with st.expander("See Transcription"):
|
94 |
+
st.caption(podcast_text['text'])
|
95 |
|
96 |
#Summarize Text
|
97 |
podcast_summary = summarize_podcast(podcast_text['text'])
|