Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rp1954
/
Lesson10
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
rp1954
commited on
18 days ago
Commit
f278345
·
verified
·
1 Parent(s):
04b93df
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
import gradio as gr
2
+
3
+
def echo(message, history):
4
+
return message
5
+
chatbot = gr.ChatInterface()
6
+
chatbot.launch()