import streamlit as st from transformers import pipeline pipe = pipeline('sentiment-analysis') # Display a welcome message st.write("# Isten hozott az IT Betyár Sentiment Analysis Applikációjában") text = st.text_area('Írjál be alább egy szöveget!') if text: out = pipe(text) st.json(out)