Class CodeInterpreter
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
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; }