File size: 129 Bytes
4da03a6
 
 
 
 
 
1
2
3
4
5
6
7
import gradio as gr
from inference import predict

demo = gr.Interface(fn=predict, inputs='text', outputs='text')
demo.launch()