Table of Contents

Class CodeInterpreter

Namespace
OpenAI.Threads
Assembly
OpenAI-DotNet.dll
public sealed class CodeInterpreter
Inheritance
CodeInterpreter
Inherited Members

Properties

Input

The input to the Code Interpreter tool call.

[JsonInclude]
[JsonPropertyName("input")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string Input { get; }

Property Value

string

Outputs

The outputs from the Code Interpreter tool call. Code Interpreter can output one or more items, including text (logs) or images (image). Each of these are represented by a different object type.

[JsonInclude]
[JsonPropertyName("outputs")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public IReadOnlyList<CodeInterpreterOutputs> Outputs { get; }

Property Value

IReadOnlyList<CodeInterpreterOutputs>