added flan model
Browse files
ChitChat/resources/routes.py
CHANGED
@@ -58,7 +58,7 @@ class ComplexChatBot(Resource):
|
|
58 |
userInput = request.json['user']
|
59 |
reply = complexChat(userInput)
|
60 |
return {'reply' : reply}
|
61 |
-
api.add_resource(ComplexChatBot, '/chat/smartbot')
|
62 |
|
63 |
|
64 |
|
|
|
58 |
userInput = request.json['user']
|
59 |
reply = complexChat(userInput)
|
60 |
return {'reply' : reply}
|
61 |
+
api.add_resource(ComplexChatBot, '/chat/smartbot/')
|
62 |
|
63 |
|
64 |
|