90e7dd3 8f5ec6b 90e7dd3 e80f06f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import streamlit as st from transformers import pipeline pipe = pipeline("sentiment-analysis") text = st.text_area("Enter some text here") if text: out = pipe(text) st.json(out) print("Welcome to EBiz AI chatbot!!!")