Spaces:
Running
Running
Husnain
commited on
Commit
•
c66e20f
1
Parent(s):
da43362
♻️ [Refactor] Rename gpt-3.5 to gpt-3.5-turbo
Browse files- constants/models.py +3 -3
constants/models.py
CHANGED
@@ -22,7 +22,7 @@ TOKEN_LIMIT_MAP = {
|
|
22 |
"mistral-7b": 32768,
|
23 |
"openchat-3.5": 8192,
|
24 |
"gemma-7b": 8192,
|
25 |
-
"gpt-3.5": 8192,
|
26 |
}
|
27 |
|
28 |
TOKEN_RESERVED = 20
|
@@ -34,7 +34,7 @@ AVAILABLE_MODELS = [
|
|
34 |
"mistral-7b",
|
35 |
"openchat-3.5",
|
36 |
"gemma-7b",
|
37 |
-
"gpt-3.5",
|
38 |
]
|
39 |
|
40 |
# https://platform.openai.com/docs/api-reference/models/list
|
@@ -75,7 +75,7 @@ AVAILABLE_MODELS_DICTS = [
|
|
75 |
"owned_by": "Google",
|
76 |
},
|
77 |
{
|
78 |
-
"id": "gpt-3.5",
|
79 |
"description": "[openai/gpt-3.5-turbo]: https://platform.openai.com/docs/models/gpt-3-5-turbo",
|
80 |
"object": "model",
|
81 |
"created": 1700000000,
|
|
|
22 |
"mistral-7b": 32768,
|
23 |
"openchat-3.5": 8192,
|
24 |
"gemma-7b": 8192,
|
25 |
+
"gpt-3.5-turbo": 8192,
|
26 |
}
|
27 |
|
28 |
TOKEN_RESERVED = 20
|
|
|
34 |
"mistral-7b",
|
35 |
"openchat-3.5",
|
36 |
"gemma-7b",
|
37 |
+
"gpt-3.5-turbo",
|
38 |
]
|
39 |
|
40 |
# https://platform.openai.com/docs/api-reference/models/list
|
|
|
75 |
"owned_by": "Google",
|
76 |
},
|
77 |
{
|
78 |
+
"id": "gpt-3.5-turbo",
|
79 |
"description": "[openai/gpt-3.5-turbo]: https://platform.openai.com/docs/models/gpt-3-5-turbo",
|
80 |
"object": "model",
|
81 |
"created": 1700000000,
|