ResponseEventStream.OutputItemComputerCallOutput Method

Definition

Convenience generator that yields the complete computer tool call output resource lifecycle. Computer 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> OutputItemComputerCallOutput(string callId, Azure.AI.AgentServer.Responses.Models.ComputerScreenshotImage output);
member this.OutputItemComputerCallOutput : string * Azure.AI.AgentServer.Responses.Models.ComputerScreenshotImage -> seq<Azure.AI.AgentServer.Responses.Models.ResponseStreamEvent>
Public Iterator Function OutputItemComputerCallOutput (callId As String, output As ComputerScreenshotImage) As IEnumerable(Of ResponseStreamEvent)

Parameters

callId
String

The call ID of the computer tool call this output is for.

output
ComputerScreenshotImage

The screenshot image output from the computer tool.

Returns

An enumerable of events: output_item.addedoutput_item.done.

Applies to