abidlabs HF Staff commited on
Commit
91c8a5f
·
verified ·
1 Parent(s): 9ea5233

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import time
3
+
4
+ def test(x, y):
5
+ time.sleep(3)
6
+ return x
7
+
8
+ gr.ChatInterface(test).launch()