Spaces:
Sleeping
Sleeping
MagicEightBall.py
Browse files
app.py
CHANGED
|
@@ -13,6 +13,6 @@ import random
|
|
| 13 |
def magicEightBall(message,history):
|
| 14 |
response=["It's certain", "Try Again", "Chances are low", "Yes", "no", "Unlikley", "likley","Ask later"]
|
| 15 |
return random.choice(response)
|
| 16 |
-
|
| 17 |
|
| 18 |
chatbot.launch()
|
|
|
|
| 13 |
def magicEightBall(message,history):
|
| 14 |
response=["It's certain", "Try Again", "Chances are low", "Yes", "no", "Unlikley", "likley","Ask later"]
|
| 15 |
return random.choice(response)
|
| 16 |
+
chatbot=gr.ChatInterface(magicEightBall, type="messages", title,"Magic eight Ball",theme='d8ahazard/material_design_rd')
|
| 17 |
|
| 18 |
chatbot.launch()
|