Daniel Tse
commited on
Commit
·
976ad76
1
Parent(s):
86e8bcb
Added explanation text.
Browse files
app.py
CHANGED
|
@@ -84,9 +84,12 @@ st.markdown(
|
|
| 84 |
- Summarizes the episode
|
| 85 |
- Allows you to ask questions and returns direct quotes from the episode.
|
| 86 |
|
|
|
|
|
|
|
| 87 |
"""
|
| 88 |
)
|
| 89 |
|
|
|
|
| 90 |
st.audio("marketplace-2023-06-14.mp3")
|
| 91 |
if st.button("Process Audio File"):
|
| 92 |
podcast_text = transcribe_audio("marketplace-2023-06-14.mp3")
|
|
|
|
| 84 |
- Summarizes the episode
|
| 85 |
- Allows you to ask questions and returns direct quotes from the episode.
|
| 86 |
|
| 87 |
+
- As a proof of Concept: the Podcast Episode of Marketplace Business News Podcast from NPR on June 14 is used in this codebase.
|
| 88 |
+
- The file is THE ONLY HARDCODED piece of information used in this application.
|
| 89 |
"""
|
| 90 |
)
|
| 91 |
|
| 92 |
+
st.text("Marketplace Episode June 14 2023")
|
| 93 |
st.audio("marketplace-2023-06-14.mp3")
|
| 94 |
if st.button("Process Audio File"):
|
| 95 |
podcast_text = transcribe_audio("marketplace-2023-06-14.mp3")
|