dnzblgn's picture
Create Pipeline.py
7a60586
raw
history blame contribute delete
No virus
169 Bytes
import streamlit as st
from transformers import pipeline
pipe = pipeline("auto_sum")
text = st.text_area("enter text: ")
if text:
out = pipe(text)
st.json(out)