Skip to content

Commit

Permalink
models: add gpt-4o and gpt-4-turbo with vision, remove gpt-3.5-turbo-…
Browse files Browse the repository at this point in the history
…0613 due to deprecation
  • Loading branch information
AAClause committed May 13, 2024
1 parent 7684c6a commit 7273b1f
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions addon/globalPlugins/openai/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,21 @@
),
Model(
"OpenAI",
"gpt-3.5-turbo-0613",
"gpt-4o",
# Translators: This is a model description
_("Same capabilities as the standard gpt-3.5-turbo model but with 4 times the context"),
16384,
4096
_("Our most advanced, multimodal flagship model that’s cheaper and faster than GPT-4 Turbo"),
128000,
4096,
vision=True
),
Model(
"OpenAI",
"gpt-4-turbo",
# Translators: This is a model description
_("The latest GPT-4 Turbo model with vision capabilities"),
128000,
4096,
vision=True,
),
Model(
"OpenAI",
Expand Down

0 comments on commit 7273b1f

Please sign in to comment.