Share via


CodeInterpreterOutputImage Constructors

Definition

Overloads

CodeInterpreterOutputImage()

Source:
CodeInterpreterOutputImage.cs

Initializes a new instance of CodeInterpreterOutputImage for deserialization.

public CodeInterpreterOutputImage();
Public Sub New ()

Applies to

CodeInterpreterOutputImage(Uri)

Source:
CodeInterpreterOutputImage.cs

Initializes a new instance of CodeInterpreterOutputImage.

public CodeInterpreterOutputImage(Uri url);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.CodeInterpreterOutputImage : Uri -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.CodeInterpreterOutputImage
Public Sub New (url As Uri)

Parameters

url
Uri

The URL of the image output from the code interpreter.

Exceptions

url is null.

Applies to

CodeInterpreterOutputImage(CodeInterpreterOutputType, IDictionary<String,BinaryData>, Uri)

Source:
CodeInterpreterOutputImage.cs

Initializes a new instance of CodeInterpreterOutputImage.

public CodeInterpreterOutputImage(Azure.AI.AgentServer.Contracts.Generated.OpenAI.CodeInterpreterOutputType type, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData, Uri url);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.CodeInterpreterOutputImage : Azure.AI.AgentServer.Contracts.Generated.OpenAI.CodeInterpreterOutputType * System.Collections.Generic.IDictionary<string, BinaryData> * Uri -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.CodeInterpreterOutputImage
Public Sub New (type As CodeInterpreterOutputType, serializedAdditionalRawData As IDictionary(Of String, BinaryData), url As Uri)

Parameters

serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

url
Uri

The URL of the image output from the code interpreter.

Applies to