Spaces:
Sleeping
Sleeping
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() | |