import gradio as gr title = "bart-large" description = "Gradio Demo for bart-large, to use it, simply add your text, or click one of the examples to load them. Read more at the links below." article = "

Huggingface Model Page

" examples = [ ["I have a problem with my iphone that needs to be resolved asap!!","urgent, not urgent, phone, tablet, computer"] ] gr.Interface.load("huggingface/facebook/bart-large-mnli",title=title,description=description,article=article, examples=examples,enable_queue=True).launch()