Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
adough
/
KWKFirst
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
adough
commited on
Jul 24, 2025
Commit
03d35a4
·
verified
·
1 Parent(s):
914eaae
Create echo function
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
CHANGED
Viewed
@@ -0,0 +1,8 @@
1
+
imort gradio as gr
2
+
3
+
def echo(message,history):
4
+
return message
5
+
6
+
chatbot = gr.ChatInterface(echo)
7
+
8
+
chatbot.launch()