alexrods's picture
Create app.py
4da03a6
raw
history blame
129 Bytes
import gradio as gr
from inference import predict
demo = gr.Interface(fn=predict, inputs='text', outputs='text')
demo.launch()