We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7684c6a commit 7273b1fCopy full SHA for 7273b1f
addon/globalPlugins/openai/consts.py
@@ -51,11 +51,21 @@
51
),
52
Model(
53
"OpenAI",
54
- "gpt-3.5-turbo-0613",
+ "gpt-4o",
55
# 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
+ _("Our most advanced, multimodal flagship model that’s cheaper and faster than GPT-4 Turbo"),
+ 128000,
+ 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
67
68
+ vision=True,
69
70
71
0 commit comments