Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
aupfe08
/
ChatInterfaceTest
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8b9935b
ChatInterfaceTest
/
app.py
aupfe08
Create app.py
8b9935b
almost 2 years ago
raw
Copy download link
history
blame
Safe
170 Bytes
import
random
import
gradio
as
gr
def
random_response
(
message, history
):
return
random.choice([
"Yes"
,
"No"
])
demo = gr.ChatInterface(random_response)
demo.launch()