Spaces:
Sleeping
Sleeping
Added title
Browse files
app.py
CHANGED
|
@@ -5,6 +5,6 @@ def random_response(message, history):
|
|
| 5 |
response_options = ["yes", "no"]
|
| 6 |
return random.choice(response_options)
|
| 7 |
|
| 8 |
-
chatbot = gr.ChatInterface(random_response)
|
| 9 |
|
| 10 |
chatbot.launch()
|
|
|
|
| 5 |
response_options = ["yes", "no"]
|
| 6 |
return random.choice(response_options)
|
| 7 |
|
| 8 |
+
chatbot = gr.ChatInterface(random_response, title = "Random Yes or No Chatbot")
|
| 9 |
|
| 10 |
chatbot.launch()
|