import streamlit as st from transformers import pipeline st.title('Plataforma de Diálogos Participativos') pipe = pipeline('sentiment-analysis') text = st.text_area('Añade el texto a evaluar') if text: out = pipe(text) st.json(out)