demo2 / app.py
sepidpy's picture
Update app.py
aaa2226 unverified
raw
history blame contribute delete
306 Bytes
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()