mango1 / app.py
on1onmangoes's picture
Update app.py
55e8537
raw
history blame
440 Bytes
import streamlit as st
from transformers import pipeline
from pydub import AudioSegment, silence
pipe = pipeline('sentiment-analysis')
text = st.text_area('Enter your notes')
if text:
out = pipe(text)
st.json(out)
st.markdown("<h1 style = text align:center;'> Group Therapy Notes </h1>",unsafe_allow_html = True)
st.markdown("---",unsafe_allow_html=True)
audio=st.file_uploader("Upload Your Audio File", type=['mp3','wav','m4a'])