Th3BossC commited on
Commit
aa19489
·
1 Parent(s): 03056d2

added flan model

Browse files
Files changed (1) hide show
  1. ChitChat/resources/routes.py +1 -1
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