josiauhlol commited on
Commit
1459687
1 Parent(s): c039d1d

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -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()