Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
cp-cp
/
AskMe
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Xinyu Wang
commited on
Dec 21, 2023
Commit
478cf05
·
1 Parent(s):
77d5a31
Add application file
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import random
2
+
import gradio as gr
3
+
4
+
def random_response(message, history):
5
+
return random.choice(["Yes", "No"])
6
+
7
+
demo = gr.ChatInterface(random_response)
8
+
9
+
demo.launch()