You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is the following: the first "ArgumentNullException.ThrowIfNull" argument is the parameter that will be checked for nullability.
By passing a "nameof()" as parameter that value will never be null.
The signature of the "ArgumentNullException.ThrowIfNull" method is the following
public static void ThrowIfNull(object? argument, string? paramName = null)
Actually I found this problem only in the file mentioned in the title.
Can I solve this issue?
The text was updated successfully, but these errors were encountered:
I noticed a problem in the two lines of code mentioned in the 2 links below
https://github.com/marcominerva/ChatGptNet/blob/master/src/ChatGptNet/ServiceConfigurations/AzureChatGptServiceConfiguration.cs#L67
https://github.com/marcominerva/ChatGptNet/blob/master/src/ChatGptNet/ServiceConfigurations/AzureChatGptServiceConfiguration.cs#L81
The problem is the following: the first "ArgumentNullException.ThrowIfNull" argument is the parameter that will be checked for nullability.
By passing a "nameof()" as parameter that value will never be null.
The signature of the "ArgumentNullException.ThrowIfNull" method is the following
public static void ThrowIfNull(object? argument, string? paramName = null)
Actually I found this problem only in the file mentioned in the title.
Can I solve this issue?
The text was updated successfully, but these errors were encountered: