Spaces:
Sleeping
Sleeping
adding more choices to be similair to an eightball
Browse files
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 |
|