Update app.py
Browse files
app.py
CHANGED
|
@@ -8,5 +8,5 @@ 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 cahtbot Ever",description="This bot will only give you perfect answer")
|
| 12 |
chatbot.launch()
|
|
|
|
| 8 |
responses=["yes","no"]
|
| 9 |
return random.choice(responses)
|
| 10 |
|
| 11 |
+
chatbot = gr.ChatInterface(yes_no,type="messages",title="The Best cahtbot Ever",description="This bot will only give you perfect answer")
|
| 12 |
chatbot.launch()
|