ResponseEventStream.OutputItemFunctionCallOutput(String, BinaryData) Method

Definition

Convenience generator that yields the complete function call output item lifecycle (S-056). Function call outputs have no deltas — only output_item.added and output_item.done.

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

Parameters

callId
String

The call ID of the function call this output is for.

output
BinaryData

The output data from the function call.

Returns

An enumerable of events: output_item.addedoutput_item.done.

Applies to