From cfad42ddf4dd174ef2ac09a6656c72c2615bc233 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Mon, 15 Dec 2025 13:44:11 +0100 Subject: [PATCH] Added support for GPT 5.2 (#593) --- .../Settings/ProviderExtensions.OpenAI.cs | 11 +++++++++++ app/MindWork AI Studio/wwwroot/changelog/v0.9.55.md | 1 + 2 files changed, 12 insertions(+) diff --git a/app/MindWork AI Studio/Settings/ProviderExtensions.OpenAI.cs b/app/MindWork AI Studio/Settings/ProviderExtensions.OpenAI.cs index ed17e399..4f86f377 100644 --- a/app/MindWork AI Studio/Settings/ProviderExtensions.OpenAI.cs +++ b/app/MindWork AI Studio/Settings/ProviderExtensions.OpenAI.cs @@ -143,6 +143,17 @@ public static partial class ProviderExtensions Capability.RESPONSES_API, Capability.CHAT_COMPLETION_API, ]; + if(modelName is "gpt-5.2" || modelName.StartsWith("gpt-5.2-")) + return + [ + Capability.TEXT_INPUT, Capability.MULTIPLE_IMAGE_INPUT, + Capability.TEXT_OUTPUT, Capability.IMAGE_OUTPUT, + + Capability.FUNCTION_CALLING, Capability.OPTIONAL_REASONING, + Capability.WEB_SEARCH, + Capability.RESPONSES_API, Capability.CHAT_COMPLETION_API, + ]; + return [ Capability.TEXT_INPUT, Capability.MULTIPLE_IMAGE_INPUT, diff --git a/app/MindWork AI Studio/wwwroot/changelog/v0.9.55.md b/app/MindWork AI Studio/wwwroot/changelog/v0.9.55.md index b1cedb29..483ec579 100644 --- a/app/MindWork AI Studio/wwwroot/changelog/v0.9.55.md +++ b/app/MindWork AI Studio/wwwroot/changelog/v0.9.55.md @@ -1,5 +1,6 @@ # v0.9.55, build 230 (2025-12-xx xx:xx UTC) - Added support for newer Mistral models (Mistral 3, Voxtral, and Magistral). +- Added support for the new OpenAI model GPT 5.2. - Added a description field to local data sources (preview feature) so that the data selection agent has more information about which data each local source contains when selecting data sources. - Added the ability to use file attachments in chat. This is the initial implementation of this feature. We will continue to develop this feature and refine it further based on user feedback. Many thanks to Sabrina `Sabrina-devops` for this wonderful contribution. - Improved the document analysis assistant (in preview) by adding descriptions to the different sections.