Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
bizarrotot
/
hello-chatbot
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
bizarrotot
commited on
Jan 4, 2024
Commit
952c270
·
1 Parent(s):
d40947b
Upload app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import random
2
+
import gradio as gr
3
+
4
+
def random_response(message, history):
5
+
return random.choice(["Yes", "No"])
6
+
7
+
8
+
gr.ChatInterface(random_response).launch()