Daniel Tse commited on
Commit
b0e0272
1 Parent(s): 2b98878

Add Dereference text for transcription.

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -54,7 +54,7 @@ if st.button("Process Audio File"):
54
  podcast_text = transcribe_audio("marketplace-2023-06-14.mp3")
55
  #write text out
56
  with st.expander("See Transcription"):
57
- st.caption(podcast_text)
58
 
59
  #Summarize Text
60
  podcast_summary = summarize_podcast(podcast_text)
 
54
  podcast_text = transcribe_audio("marketplace-2023-06-14.mp3")
55
  #write text out
56
  with st.expander("See Transcription"):
57
+ st.caption(podcast_text['text']})
58
 
59
  #Summarize Text
60
  podcast_summary = summarize_podcast(podcast_text)