Spaces:
Sleeping
Sleeping
magic eight iteration 4
Browse files
app.py
CHANGED
|
@@ -6,8 +6,9 @@ def random_response(message, history):
|
|
| 6 |
return random.choice(response_options)
|
| 7 |
|
| 8 |
chatbot = gr.ChatInterface(
|
| 9 |
-
|
| 10 |
title = "Magic Eight Ball",
|
| 11 |
description = "I can predict your future!"
|
| 12 |
)
|
|
|
|
| 13 |
chatbot.launch()
|
|
|
|
| 6 |
return random.choice(response_options)
|
| 7 |
|
| 8 |
chatbot = gr.ChatInterface(
|
| 9 |
+
random_response,
|
| 10 |
title = "Magic Eight Ball",
|
| 11 |
description = "I can predict your future!"
|
| 12 |
)
|
| 13 |
+
|
| 14 |
chatbot.launch()
|