demoapp / app.py
Shiraztanvir123's picture
Update app.py
12f8e53 verified
raw
history blame contribute delete
180 Bytes
import streamlit as st
from transformers import pipeline
pipe = pipeline("text-generation")
text=st.text_area('Enter Some Text!')
if text:
out = pipe(text)
st.json(out)