From ca50aecae1e29af50018ec10472dcfcedf1da4aa Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Thu, 13 Nov 2025 16:28:35 +0100 Subject: [PATCH] Formatting --- app/MindWork AI Studio/Provider/BaseProvider.cs | 6 ++++-- .../Provider/OpenAI/ChatCompletionAPIRequest.cs | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/app/MindWork AI Studio/Provider/BaseProvider.cs b/app/MindWork AI Studio/Provider/BaseProvider.cs index 2db87fdc..889f2585 100644 --- a/app/MindWork AI Studio/Provider/BaseProvider.cs +++ b/app/MindWork AI Studio/Provider/BaseProvider.cs @@ -522,8 +522,10 @@ public abstract class BaseProvider : IProvider, ISecretId /// Parse and convert API parameters from a provided JSON string into a dictionary, /// optionally merging additional parameters and removing specific keys. /// - /// A JSON string (without surrounding braces) containing the API parameters to be parsed. - /// Optional list of keys to remove from the final dictionary (case-insensitive). stream, model and messages are removed by default. + /// A JSON string (without surrounding curly brackets) + /// containing the API parameters to be parsed. + /// Optional list of keys to remove from the final dictionary + /// (case-insensitive). The parameters stream, model, and messages are removed by default. protected IDictionary ParseApiParameters( string additionalUserProvidedParameters, params IEnumerable keysToRemove) diff --git a/app/MindWork AI Studio/Provider/OpenAI/ChatCompletionAPIRequest.cs b/app/MindWork AI Studio/Provider/OpenAI/ChatCompletionAPIRequest.cs index 6cf362d1..70a8adc2 100644 --- a/app/MindWork AI Studio/Provider/OpenAI/ChatCompletionAPIRequest.cs +++ b/app/MindWork AI Studio/Provider/OpenAI/ChatCompletionAPIRequest.cs @@ -19,5 +19,5 @@ public record ChatCompletionAPIRequest( } [JsonExtensionData] - public IDictionary ? AdditionalApiParameters { get; init; } + public IDictionary? AdditionalApiParameters { get; init; } } \ No newline at end of file