demo / app.py
shoeb786's picture
committing changes
d3e4491
raw
history blame
No virus
305 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()