Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abidlabs
/
test-chat-interface-zero
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
abidlabs
HF Staff
commited on
Nov 29, 2024
Commit
91c8a5f
·
verified
·
1 Parent(s):
9ea5233
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -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()