Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kaitwithkwk
/
chatbot-lab-practice
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
kaitwithkwk
commited on
Apr 15
Commit
10a0507
·
verified
·
1 Parent(s):
7b2c281
Create app.py
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
+
print("Hello, world!")
7
+
8
+
chatbot = gr.ChatInterface(echo, type="messages")
9
+
10
+
chatbot.launch()