Formatting

This commit is contained in:
Thorsten Sommer 2025-11-13 16:28:35 +01:00
parent 4f82b42ff1
commit ca50aecae1
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 5 additions and 3 deletions

View File

@ -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.
/// </summary>
/// <param name="additionalUserProvidedParameters">A JSON string (without surrounding braces) containing the API parameters to be parsed.</param>
/// <param name="keysToRemove">Optional list of keys to remove from the final dictionary (case-insensitive). stream, model and messages are removed by default.</param>
/// <param name="additionalUserProvidedParameters">A JSON string (without surrounding curly brackets)
/// containing the API parameters to be parsed.</param>
/// <param name="keysToRemove">Optional list of keys to remove from the final dictionary
/// (case-insensitive). The parameters stream, model, and messages are removed by default.</param>
protected IDictionary<string, object> ParseApiParameters(
string additionalUserProvidedParameters,
params IEnumerable<string> keysToRemove)

View File

@ -19,5 +19,5 @@ public record ChatCompletionAPIRequest(
}
[JsonExtensionData]
public IDictionary<string, object> ? AdditionalApiParameters { get; init; }
public IDictionary<string, object>? AdditionalApiParameters { get; init; }
}