demo / app.py
soiz1's picture
Update app.py
d2c6b48 verified
raw
history blame
342 Bytes
#Meaningless comments for restarting
from transformers import pipeline
import gradio as gr
model = pipeline(
"summarization",
)
def predict(prompt):
summary = model(prompt)[0]["summary_text"]
return summary
# create an interface for the model
with gr.Interface(predict, "textbox", "text") as interface:
interface.launch()