alexrods commited on
Commit
4da03a6
1 Parent(s): 0fc1f17

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from inference import predict
3
+
4
+ demo = gr.Interface(fn=predict, inputs='text', outputs='text')
5
+ demo.launch()
6
+