Share via


CodeInterpreterOutputLogs Constructors

Definition

Overloads

CodeInterpreterOutputLogs()

Source:
CodeInterpreterOutputLogs.cs

Initializes a new instance of CodeInterpreterOutputLogs for deserialization.

public CodeInterpreterOutputLogs();
Public Sub New ()

Applies to

CodeInterpreterOutputLogs(String)

Source:
CodeInterpreterOutputLogs.cs

Initializes a new instance of CodeInterpreterOutputLogs.

public CodeInterpreterOutputLogs(string logs);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.CodeInterpreterOutputLogs : string -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.CodeInterpreterOutputLogs
Public Sub New (logs As String)

Parameters

logs
String

The logs output from the code interpreter.

Exceptions

logs is null.

Applies to

CodeInterpreterOutputLogs(CodeInterpreterOutputType, IDictionary<String,BinaryData>, String)

Source:
CodeInterpreterOutputLogs.cs

Initializes a new instance of CodeInterpreterOutputLogs.

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

Parameters

serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

logs
String

The logs output from the code interpreter.

Applies to