From aaf2de278f079aafcf378f310d7d6f968a568d4d Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Fri, 12 Sep 2025 10:54:07 -0700 Subject: [PATCH] OpenAI: move and rename ChatGPT-NR --- src/modules/llms/server/openai/models/openai.models.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/llms/server/openai/models/openai.models.ts b/src/modules/llms/server/openai/models/openai.models.ts index 3ab0d0bfb..71a0c7ec2 100644 --- a/src/modules/llms/server/openai/models/openai.models.ts +++ b/src/modules/llms/server/openai/models/openai.models.ts @@ -52,7 +52,7 @@ export const _knownOpenAIChatModels: ManualMappings = [ // GPT-5 Chat Latest { idPrefix: 'gpt-5-chat-latest', - label: 'GPT-5 Chat Latest', + label: 'GPT-5 ChatGPT (Non-Thinking)', description: 'GPT-5 model used in ChatGPT. Points to the GPT-5 snapshot currently used in ChatGPT.', contextWindow: 400000, maxCompletionTokens: 128000, @@ -1139,9 +1139,9 @@ export function openAIModelToModelDescription(modelId: string, modelCreated: num const _manualOrderingIdPrefixes = [ // GPT-5 'gpt-5-20', - 'gpt-5-chat-latest', 'gpt-5-mini-20', 'gpt-5-nano-20', + 'gpt-5-chat-latest', 'gpt-5-', // Reasoning models 'o5-20',