mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-22 00:13:37 +00:00
13 lines
663 B
C#
13 lines
663 B
C#
|
|
namespace AIStudio.Provider.OpenAI;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// The closing line of a streamed Responses API call, which repeats the whole response.
|
||
|
|
/// </summary>
|
||
|
|
/// <remarks>
|
||
|
|
/// Everything the round produced comes back here, reasoning items included, in the same shape a
|
||
|
|
/// non-streamed call would have returned. That is why a streamed tool calling round needs no
|
||
|
|
/// reassembly: this line is the round.
|
||
|
|
/// </remarks>
|
||
|
|
/// <param name="Type">The type of the stream event.</param>
|
||
|
|
/// <param name="Response">The response as a non-streamed call would have returned it.</param>
|
||
|
|
public sealed record ResponsesCompletedStreamLine(string Type, ResponsesResponse? Response);
|