Skip to content

Commit 7273b1f

Browse files
committed
models: add gpt-4o and gpt-4-turbo with vision, remove gpt-3.5-turbo-0613 due to deprecation
1 parent 7684c6a commit 7273b1f

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

addon/globalPlugins/openai/consts.py

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,21 @@
5151
),
5252
Model(
5353
"OpenAI",
54-
"gpt-3.5-turbo-0613",
54+
"gpt-4o",
5555
# Translators: This is a model description
56-
_("Same capabilities as the standard gpt-3.5-turbo model but with 4 times the context"),
57-
16384,
58-
4096
56+
_("Our most advanced, multimodal flagship model that’s cheaper and faster than GPT-4 Turbo"),
57+
128000,
58+
4096,
59+
vision=True
60+
),
61+
Model(
62+
"OpenAI",
63+
"gpt-4-turbo",
64+
# Translators: This is a model description
65+
_("The latest GPT-4 Turbo model with vision capabilities"),
66+
128000,
67+
4096,
68+
vision=True,
5969
),
6070
Model(
6171
"OpenAI",

0 commit comments

Comments
 (0)