Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -8,6 +8,8 @@ def yes_no(message, history):
|
|
| 8 |
responses = ["Yes", "No"]
|
| 9 |
return random.choice(responses)
|
| 10 |
|
| 11 |
-
chatbot = gr.ChatInterface(yes_no, type = "messages", title="The best chat bot", description="Ask it Yes or No questions"
|
|
|
|
| 12 |
|
| 13 |
chatbot.launch()
|
|
|
|
|
|
| 8 |
responses = ["Yes", "No"]
|
| 9 |
return random.choice(responses)
|
| 10 |
|
| 11 |
+
chatbot = gr.ChatInterface(yes_no, type = "messages", title="The best chat bot", description="Ask it Yes or No questions")
|
| 12 |
+
background = gr.Interface(theme='gstaff/sketch')
|
| 13 |
|
| 14 |
chatbot.launch()
|
| 15 |
+
background.launch()
|