Skip to content

Commit

Permalink
Merge pull request ChatGPTNextWeb#6121 from ChatGPTNextWeb/feat/suppo…
Browse files Browse the repository at this point in the history
…rt-openai-o3-mini

feat(model): add support for OpenAI o3-mini model
  • Loading branch information
Leizhenpeng authored Feb 2, 2025
2 parents 3ef5993 + 4f28fca commit 1e20b64
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/constant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,8 @@ export const VISION_MODEL_REGEXES = [
export const EXCLUDE_VISION_MODEL_REGEXES = [/claude-3-5-haiku-20241022/];

const openaiModels = [
// As of July 2024, gpt-4o-mini should be used in place of gpt-3.5-turbo,
// as it is cheaper, more capable, multimodal, and just as fast. gpt-3.5-turbo is still available for use in the API.
"gpt-3.5-turbo",
"gpt-3.5-turbo-1106",
"gpt-3.5-turbo-0125",
Expand All @@ -472,6 +474,7 @@ const openaiModels = [
"dall-e-3",
"o1-mini",
"o1-preview",
"o3-mini",
];

const googleModels = [
Expand Down

0 comments on commit 1e20b64

Please sign in to comment.