mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-27 00:53:37 +00:00
24 lines
1.2 KiB
C#
24 lines
1.2 KiB
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)
|
|
{
|
|
/// <summary>
|
|
/// States what the request of this call carried, as far as it can be believed.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The one way from the wire to a usage, shared by the plain text path and the tool calling
|
|
/// path, so that what counts as believable is decided in a single place.
|
|
/// </remarks>
|
|
/// <returns>The usage, or TokenUsage.UNKNOWN when the line states nothing usable.</returns>
|
|
public TokenUsage GetUsage() => this.Response?.GetUsage() ?? TokenUsage.UNKNOWN;
|
|
} |