Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Hikmahhh
/
My-First-Chatbot
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Hikmahhh
commited on
Aug 8, 2025
Commit
c9a6979
·
verified
·
1 Parent(s):
4028784
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
+
4
+
def echo(message, history):
5
+
return message
6
+
7
+
chatbot = gr.ChatInterface() #conversation history and user input(chatbot UI)
8
+
chatbot.launch()