Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Crimson206
/
Tutorial
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Crimson206
commited on
Feb 2, 2024
Commit
7152913
Β·
verified
Β·
1 Parent(s):
df46be5
Upload folder using huggingface_hub
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()