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...
478cf05
AskMe
/
app.py
Xinyu Wang
Add application file
478cf05
over 1 year ago
raw
Copy download link
history
blame
Safe
171 Bytes
import
random
import
gradio
as
gr
def
random_response
(
message, history
):
return
random.choice([
"Yes"
,
"No"
])
demo = gr.ChatInterface(random_response)
demo.launch()