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
Copy file name to clipboardexpand all lines: src/Libraries/Microsoft.Extensions.AI/ChatCompletion/ChatClientStructuredOutputExtensions.cs
-8
Original file line number
Diff line number
Diff line change
@@ -36,10 +36,6 @@ public static class ChatClientStructuredOutputExtensions
36
36
/// </param>
37
37
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for cancellation requests. The default is <see cref="CancellationToken.None"/>.</param>
38
38
/// <returns>The response messages generated by the client.</returns>
39
-
/// <remarks>
40
-
/// The returned messages will not have been added to <paramref name="chatMessages"/>. However, any intermediate messages generated implicitly
41
-
/// by the client, including any messages for roundtrips to the model as part of the implementation of this request, will be included.
42
-
/// </remarks>
43
39
/// <typeparam name="T">The type of structured output to request.</typeparam>
@@ -145,10 +141,6 @@ public static Task<ChatResponse<T>> GetResponseAsync<T>(
145
141
/// </param>
146
142
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to monitor for cancellation requests. The default is <see cref="CancellationToken.None"/>.</param>
147
143
/// <returns>The response messages generated by the client.</returns>
148
-
/// <remarks>
149
-
/// The returned messages will not have been added to <paramref name="chatMessages"/>. However, any intermediate messages generated implicitly
150
-
/// by the client, including any messages for roundtrips to the model as part of the implementation of this request, will be included.
151
-
/// </remarks>
152
144
/// <typeparam name="T">The type of structured output to request.</typeparam>
153
145
/// <exception cref="ArgumentNullException"><paramref name="chatClient"/> is <see langword="null"/>.</exception>
154
146
/// <exception cref="ArgumentNullException"><paramref name="chatMessages"/> is <see langword="null"/>.</exception>
0 commit comments