Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
CJDA
/
first-chatbot
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
CJDA
commited on
Aug 8, 2025
Commit
d2fb24f
·
verified
·
1 Parent(s):
e903fbb
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
+
chatbot = gr.ChatIntereface(echo) #chatbot UI - conversation history and user input
7
+
8
+
chatbot.launch()