Daniel Tse commited on
Commit
77d31c3
·
1 Parent(s): 7814fef

Remove mention of Q&A

Browse files
Files changed (1) hide show
  1. app.py +0 -7
app.py CHANGED
@@ -97,7 +97,6 @@ st.markdown(
97
  This helps understand information-dense podcast episodes by doing the following:
98
  - Speech to Text transcription - using OpenSource Whisper Model
99
  - Summarizes the episode
100
- - Allows you to ask questions and returns direct quotes from the episode.
101
 
102
  - As a proof of Concept: the Podcast Episode of Marketplace Business News Podcast from NPR on June 14 is used in this codebase.
103
  - The file is THE ONLY HARDCODED piece of information used in this application.
@@ -131,9 +130,3 @@ if st.button("Summarize Podcast"):
131
  """
132
  )
133
  st.text(podcast_summary['summary_text'])
134
-
135
- #audio_file = st.file_uploader("Upload audio copy of file", key="upload", type=['.mp3'])
136
-
137
-
138
- # if audio_file:
139
- # transcribe_audio(audio_file)
 
97
  This helps understand information-dense podcast episodes by doing the following:
98
  - Speech to Text transcription - using OpenSource Whisper Model
99
  - Summarizes the episode
 
100
 
101
  - As a proof of Concept: the Podcast Episode of Marketplace Business News Podcast from NPR on June 14 is used in this codebase.
102
  - The file is THE ONLY HARDCODED piece of information used in this application.
 
130
  """
131
  )
132
  st.text(podcast_summary['summary_text'])