John Liao commited on
Commit
3aa933f
·
verified ·
1 Parent(s): 28e700c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py CHANGED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import random
2
+ import gradio as gr
3
+
4
+ def alternatingly_agree(message, history):
5
+ if len(history) % 2 == 0:
6
+ return f"Yes, I do think that '{message}'"
7
+ else:
8
+ return "I don't think so"
9
+
10
+ gr.ChatInterface(alternatingly_agree).launch(share=True)