Daniel Tse
commited on
Commit
·
0069484
1
Parent(s):
e8acce3
Add dereferencing of transcription text.
Browse files
app.py
CHANGED
@@ -94,7 +94,7 @@ if st.button("Process Audio File"):
|
|
94 |
st.caption(podcast_text['text']})
|
95 |
|
96 |
#Summarize Text
|
97 |
-
podcast_summary = summarize_podcast(podcast_text)
|
98 |
st.markdown(
|
99 |
"""
|
100 |
##Summary of Text
|
|
|
94 |
st.caption(podcast_text['text']})
|
95 |
|
96 |
#Summarize Text
|
97 |
+
podcast_summary = summarize_podcast(podcast_text['text'])
|
98 |
st.markdown(
|
99 |
"""
|
100 |
##Summary of Text
|