from transformers import pipeline import gradio as gr model = pipeline("summarization") def predict(prompt): summary = model(prompt)[0]['summary text'] return summary with gr.Interface(predict, "textbox", "text") as interface: interface.launch()