Someman's picture
created app.py
ce4bb15
raw
history blame
No virus
246 Bytes
import gradio as gr
title = "Nepali News Summarization"
demo = gr.load(
"GenzNepal/mt5-summarize-nepalil",
inputs=gr.Textbox(lines=5, max_lines=20, label="Input Text"),
title=title,
)
if __name__ == "__main__":
demo.launch()