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
`RealtimeClient` has two HTTP operations: `CreateEphemeralToken` and `CreateEphemeralTranscriptionToken`, which are currently broken because the pipeline is not set up correctly. This change fixes that issue.
Copy file name to clipboardExpand all lines: src/Custom/Audio/AudioClient.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ public partial class AudioClient
37
37
// - Demoted the endpoint parameter to be a property in the options class.
38
38
/// <summary> Initializes a new instance of <see cref="AudioClient"/>. </summary>
39
39
/// <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>
40
-
/// <param name="credential"> The API key to authenticate with the service. </param>
40
+
/// <param name="credential"> The <see cref="ApiKeyCredential"/> to authenticate with the service. </param>
41
41
/// <exception cref="ArgumentNullException"> <paramref name="model"/> or <paramref name="credential"/> is null. </exception>
42
42
/// <exception cref="ArgumentException"> <paramref name="model"/> is an empty string, and was expected to be non-empty. </exception>
@@ -50,7 +50,7 @@ public partial class AudioClient
50
50
// - Demoted the endpoint parameter to be a property in the options class.
51
51
/// <summary> Initializes a new instance of <see cref="AudioClient"/>. </summary>
52
52
/// <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>
53
-
/// <param name="credential"> The API key to authenticate with the service. </param>
53
+
/// <param name="credential"> The <see cref="ApiKeyCredential"/> to authenticate with the service. </param>
54
54
/// <param name="options"> The options to configure the client. </param>
55
55
/// <exception cref="ArgumentNullException"> <paramref name="model"/> or <paramref name="credential"/> is null. </exception>
56
56
/// <exception cref="ArgumentException"> <paramref name="model"/> is an empty string, and was expected to be non-empty. </exception>
Copy file name to clipboardExpand all lines: src/Custom/Chat/ChatClient.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ public partial class ChatClient
41
41
// - Demoted the endpoint parameter to be a property in the options class.
42
42
/// <summary> Initializes a new instance of <see cref="ChatClient"/>. </summary>
43
43
/// <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>
44
-
/// <param name="credential"> The API key to authenticate with the service. </param>
44
+
/// <param name="credential"> The <see cref="ApiKeyCredential"/> to authenticate with the service. </param>
45
45
/// <exception cref="ArgumentNullException"> <paramref name="model"/> or <paramref name="credential"/> is null. </exception>
46
46
/// <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>
57
57
/// <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>
58
-
/// <param name="credential"> The API key to authenticate with the service. </param>
58
+
/// <param name="credential"> The <see cref="ApiKeyCredential"/> to authenticate with the service. </param>
59
59
/// <param name="options"> The options to configure the client. </param>
60
60
/// <exception cref="ArgumentNullException"> <paramref name="model"/> or <paramref name="credential"/> is null. </exception>
61
61
/// <exception cref="ArgumentException"> <paramref name="model"/> is an empty string, and was expected to be non-empty. </exception>
0 commit comments