Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Sadmo
/
chatbotLab
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Sadmo
commited on
Jun 5, 2025
Commit
794ac2a
·
verified
·
1 Parent(s):
ef4fd6d
created app.py and launched echo chatbot
Browse files
Files changed (1)
hide
show
app.py
+10
-0
app.py
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
import gradio as gr
2
+
3
+
def echo(message, history):
4
+
return message
5
+
6
+
chatbot = gr.ChatInterface(echo)
7
+
8
+
chatbot.launch()
9
+
10
+
# repeats messages