arithescientist commited on
Commit
02a288f
·
1 Parent(s): 176379b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -285,7 +285,7 @@ def uploads2():
285
  return None
286
 
287
 
288
- if __name__ == "__main__":
289
- app.run(host='0.0.0.0', port=8000, debug=True)
290
-
291
 
 
 
 
285
  return None
286
 
287
 
288
+ import gradio as gr
 
 
289
 
290
+ iface = gr.Interface(fn=index)
291
+ iface.launch()