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