ResponseEventStream.OutputItemApplyPatchCallOutput Method

Definition

Convenience generator that yields the complete apply-patch tool call output lifecycle. Apply-patch call outputs have no intermediate events — only output_item.added and output_item.done.

public System.Collections.Generic.IEnumerable<Azure.AI.AgentServer.Responses.Models.ResponseStreamEvent> OutputItemApplyPatchCallOutput(string callId, Azure.AI.AgentServer.Responses.Models.ApplyPatchCallOutputStatus status);
member this.OutputItemApplyPatchCallOutput : string * Azure.AI.AgentServer.Responses.Models.ApplyPatchCallOutputStatus -> seq<Azure.AI.AgentServer.Responses.Models.ResponseStreamEvent>
Public Iterator Function OutputItemApplyPatchCallOutput (callId As String, status As ApplyPatchCallOutputStatus) As IEnumerable(Of ResponseStreamEvent)

Parameters

callId
String

The call ID of the apply-patch call this output is for.

status
ApplyPatchCallOutputStatus

The output status.

Returns

An enumerable of events: output_item.addedoutput_item.done.

Applies to