ChatBot_AI / app.py
EbubeJohnEnyi's picture
Update app.py
1785a8e verified
raw
history blame
No virus
189 Bytes
import streamlit as st
from transformers import pipeline
pipe = pipeline('sentiment-analysis')
text = st.text_area('Enter your text here: ')
if text:
out = pipe(text)
st.json(out)