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
/// <summary> Initializes a new instance of <see cref="ChatClient"/>. </summary>
75
+
/// <param name="model"> The name of the model to use in requests sent to the service. To learn more about the available models, see <see href="https://platform.openai.com/docs/models"/>. </param>
76
+
/// <param name="authenticationPolicy"> The authentication policy used to authenticate with the service. </param>
77
+
/// <exception cref="ArgumentNullException"> <paramref name="model"/> or <paramref name="authenticationPolicy"/> is null. </exception>
78
+
/// <exception cref="ArgumentException"> <paramref name="model"/> is an empty string, and was expected to be non-empty. </exception>
/// <summary> Initializes a new instance of <see cref="ChatClient"/>. </summary>
85
+
/// <param name="model"> The name of the model to use in requests sent to the service. To learn more about the available models, see <see href="https://platform.openai.com/docs/models"/>. </param>
86
+
/// <param name="authenticationPolicy"> The authentication policy used to authenticate with the service. </param>
87
+
/// <param name="options"> The options to configure the client. </param>
88
+
/// <exception cref="ArgumentNullException"> <paramref name="model"/> or <paramref name="authenticationPolicy"/> is null. </exception>
89
+
/// <exception cref="ArgumentException"> <paramref name="model"/> is an empty string, and was expected to be non-empty. </exception>
0 commit comments