eteron commited on
Commit
7bc8fb3
·
1 Parent(s): 6f854da

Upload app.py

Browse files

Add application file

Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def predict(name):
4
+ pass
5
+
6
+ interface = gr.ChatInterface(predict)
7
+
8
+ if __name__ == '__main__':
9
+ interface.launch(predict)