orion / app.py
andreslu's picture
Update app.py
4e58ddc
raw
history blame
438 Bytes
import gradio as gr
from inductor import BartInductor
inductor = BartInductor()
def bart(text):
return inductor.generate(text)
iface = gr.Interface(fn=bart,
inputs=gr.inputs.Textbox(default='<mask> is the capital of <mask>.'),
outputs="text",
title="BART Inductor",
description="Enter a text prompt to generate text using BART.")
iface.launch()