Update apis/chat_api.py
Browse files- apis/chat_api.py +1 -1
apis/chat_api.py
CHANGED
@@ -243,7 +243,7 @@ class ChatAPIApp:
|
|
243 |
include_in_schema=include_in_schema,
|
244 |
)(self.chat_completions)
|
245 |
|
246 |
-
if prefix in ["v1"]:
|
247 |
include_in_schema = True
|
248 |
else:
|
249 |
include_in_schema = False
|
|
|
243 |
include_in_schema=include_in_schema,
|
244 |
)(self.chat_completions)
|
245 |
|
246 |
+
if prefix in ["/v1"]:
|
247 |
include_in_schema = True
|
248 |
else:
|
249 |
include_in_schema = False
|