Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -2,7 +2,12 @@ import gradio as gr
|
|
| 2 |
import random
|
| 3 |
|
| 4 |
def magic_8_ball(message, history):
|
| 5 |
-
return random.choice(['
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
|
| 7 |
print("Hello World!")
|
| 8 |
chatbot = gr.ChatInterface(magic_8_ball, type = "messages")
|
|
|
|
| 2 |
import random
|
| 3 |
|
| 4 |
def magic_8_ball(message, history):
|
| 5 |
+
return random.choice(['yes', 'no'])
|
| 6 |
+
|
| 7 |
+
#def yes_or_no(message, history):
|
| 8 |
+
# return random.choice(['Yes', 'No'])
|
| 9 |
+
#def echo(message, history):
|
| 10 |
+
# return message
|
| 11 |
|
| 12 |
print("Hello World!")
|
| 13 |
chatbot = gr.ChatInterface(magic_8_ball, type = "messages")
|