Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
commonlemon
/
ChatbotLab-IA
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
commonlemon
commited on
21 days ago
Commit
ecfc0b7
·
verified
·
1 Parent(s):
be85c9b
initial commit
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
import gradio as gr #abbreviate gradio
2
+
3
+
# defining chatbot
4
+
chatbot = gr.ChatInterface() #using gradio to quickly build a chatbot UI (w/ convo history & user input)
5
+
chatbot.launch() #launch chatbot