Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
shaneli1020
/
FirstKWKChatbot
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
shaneli1020
commited on
Apr 27, 2025
Commit
76966b5
·
verified
·
1 Parent(s):
37a39d5
Created echo chatbot using define function
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
CHANGED
Viewed
@@ -0,0 +1,7 @@
1
+
import gradio as gr
2
+
3
+
def echo(message):
4
+
return message
5
+
6
+
chatbot = gr.ChatInterface(echo)
7
+
chatbot.launch()