~ | quick fix

This commit is contained in:
abc 2023-10-20 19:08:39 +01:00
parent 2a52d844f3
commit 0ddfe57431
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ class Api:
'Content-Disposition'], 'max_age': 600}})
self.app.route('/v1/models', methods=['GET'])(self.models)
self.app.route('v1/models/<model_id>', methods=['GET'])(self.model_info)
self.app.route('/v1/models/<model_id>', methods=['GET'])(self.model_info)
self.app.route('/v1/chat/completions', methods=['POST'])(self.chat_completions)
self.app.route('/v1/completions', methods=['POST'])(self.completions)