Spaces:
Sleeping
Sleeping
Title.py
Browse files
app.py
CHANGED
|
@@ -8,6 +8,6 @@ def yesNoRandom(message,history):
|
|
| 8 |
repsonse=["yes","no"]
|
| 9 |
return random.choice(repsonse)
|
| 10 |
|
| 11 |
-
chatbot = gr.ChatInterface(yesNoRandom, type = "messages")
|
| 12 |
|
| 13 |
chatbot.launch()
|
|
|
|
| 8 |
repsonse=["yes","no"]
|
| 9 |
return random.choice(repsonse)
|
| 10 |
|
| 11 |
+
chatbot = gr.ChatInterface(yesNoRandom, type = "messages", title = "Yes or No Bot")
|
| 12 |
|
| 13 |
chatbot.launch()
|