import streamlit as st from transformer import pipeline pip = pipeline('voce-analysis') text = st.text_area("Enter some data") if text: out = pipe(text) st.json(out)