ashimanair commited on
Commit
b3aa255
·
verified ·
1 Parent(s): 26f9942

adding more choices to be similair to an eightball

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -2,7 +2,7 @@ import gradio as gr
2
  import random
3
 
4
  def random_message(message, history):
5
- choices = ["yes", "no"]
6
  random_choices = random.choice(choices)
7
  return random_choices
8
 
 
2
  import random
3
 
4
  def random_message(message, history):
5
+ choices = ["try again later", "isn't looking good for you", "perhaps", "maybe", "doubtful", "yes", "no", "without a doubt", "most likely", "signs point to yes", "it is certain", "my sources say no", "reply hazy, try again"]
6
  random_choices = random.choice(choices)
7
  return random_choices
8