File size: 506 Bytes
ab58fb5 f3e24b8 ab58fb5 b03d0c5 4ebf6a9 b03d0c5 4ebf6a9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import streamlit as st
from transformers import pipeline
st.markdown("# Podcast Q&A")
st.markdown(
"""
This helps understand information-dense podcast episodes by doing the following:
- Speech to Text transcription - using OpenSource Whisper Model
- Summarizes the episode
- Allows you to ask questions and returns direct quotes from the episode.
"""
)
audio_file = st.file_uploader("Upload audio copy of file", key="upload", type=['.mp3'])
|