lcbwhite commited on
Commit
c3e6035
·
verified ·
1 Parent(s): c8eafee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -4
app.py CHANGED
@@ -1,7 +1,10 @@
1
- import gradio as gr
2
  import random
 
3
 
4
- gr.ChatInterface(random_response).launch()
 
 
 
 
5
 
6
- def random_response(message, history):
7
- return random.choice(["Yes", "No"])
 
 
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()