Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kaitwithkwk
/
gradio-chat-interface
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
kaitwithkwk
commited on
Jun 27, 2025
Commit
70edcbd
·
verified
·
1 Parent(s):
8927a9d
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
+
3
+
def echo(message, history):
4
+
return message
5
+
6
+
echo_chatbot = gr.ChatInterface(echo)
7
+
8
+
echo_chatbot.launch()