From b6f3f4538ff3f4fb9d2836734dfd521b0373d37e Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Thu, 29 Jan 2026 21:22:02 -0800 Subject: [PATCH] LLMs: Update OpenAI Instant models --- .../llms/server/openai/models/openai.models.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/modules/llms/server/openai/models/openai.models.ts b/src/modules/llms/server/openai/models/openai.models.ts index 85d49503b..92875087c 100644 --- a/src/modules/llms/server/openai/models/openai.models.ts +++ b/src/modules/llms/server/openai/models/openai.models.ts @@ -122,8 +122,8 @@ export const _knownOpenAIChatModels: ManualMappings = [ idPrefix: 'gpt-5.2-chat-latest', label: 'GPT-5.2 Instant', description: 'GPT-5.2 model powering ChatGPT. Fast, capable for everyday work with clear improvements in info-seeking, how-tos, technical writing.', - contextWindow: 400000, - maxCompletionTokens: 128000, + contextWindow: 128000, + maxCompletionTokens: 16384, trainingDataCutoff: 'Aug 2025', interfaces: [LLM_IF_OAI_Responses, ...IFS_CHAT_CACHE, LLM_IF_Tools_WebSearch, LLM_IF_HOTFIX_NoTemperature], parameterSpecs: [ @@ -192,8 +192,8 @@ export const _knownOpenAIChatModels: ManualMappings = [ idPrefix: 'gpt-5.1-chat-latest', label: 'GPT-5.1 Instant', description: 'GPT-5.1 Instant with adaptive reasoning. More conversational with improved instruction following.', - contextWindow: 400000, - maxCompletionTokens: 128000, + contextWindow: 128000, + maxCompletionTokens: 16384, // trainingDataCutoff: 'Oct 31, 2024', // interfaces: [LLM_IF_OAI_Responses, LLM_IF_OAI_Chat, LLM_IF_OAI_Vision, LLM_IF_OAI_PromptCaching], // no function calling or reasoning interfaces: [LLM_IF_OAI_Responses, ...IFS_CHAT_CACHE_REASON, LLM_IF_Tools_WebSearch, LLM_IF_HOTFIX_NoTemperature], @@ -309,8 +309,8 @@ export const _knownOpenAIChatModels: ManualMappings = [ idPrefix: '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, + contextWindow: 128000, + maxCompletionTokens: 16384, trainingDataCutoff: 'Sep 29, 2024', interfaces: [LLM_IF_OAI_Responses, LLM_IF_OAI_Chat, LLM_IF_OAI_Vision, LLM_IF_OAI_PromptCaching], // no function calling or reasoning chatPrice: { input: 1.25, cache: { cType: 'oai-ac', read: 0.125 }, output: 10 },