Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
standarovskid
/
bot
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
standarovskid
commited on
Feb 19
Commit
033c2c2
·
verified
·
1 Parent(s):
886acd4
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
import gradio as gr
2
+
3
+
def slow_echo(message, history):
4
+
return message
5
+
6
+
demo = gr.ChatInterface(slow_echo).queue().launch()