CosmoAI commited on
Commit
75cf840
·
1 Parent(s): 11c3841

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -32,7 +32,11 @@ def bardChat(data):
32
  return answer
33
 
34
  def responsenew(data):
35
- return bardChat(data)
 
 
 
 
36
 
37
  with gr.Blocks() as demo:
38
  chatbot = gr.Chatbot()
 
32
  return answer
33
 
34
  def responsenew(data):
35
+ remind_val = ["create a reminder", "create reminder", "remind me"]
36
+ if remind_val in data:
37
+ return "Reminder created!"
38
+ else:
39
+ return bardChat(data)
40
 
41
  with gr.Blocks() as demo:
42
  chatbot = gr.Chatbot()