Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
AnaviJoshi
/
Chatbot_Lab
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
AnaviJoshi
commited on
Jun 5, 2025
Commit
a027e5c
·
verified
·
1 Parent(s):
6033e18
Created ap.py and launched echo chatbot - repeats what you say back
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.ChatInterface(echo)
7
+
8
+
chatbot.launch()