import streamlit as st from transformers import pipeline model = pipeline('sentiment-analysis') text = st.text_area('Enter some text') if text: out = model(text) st.json(out)