AIProjectsModelFactory.RunStepDeltaCodeInterpreterDetailItemObject Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of RunStepDeltaCodeInterpreterDetailItemObject.
public static Azure.AI.Projects.RunStepDeltaCodeInterpreterDetailItemObject RunStepDeltaCodeInterpreterDetailItemObject (string input = default, System.Collections.Generic.IEnumerable<Azure.AI.Projects.RunStepDeltaCodeInterpreterOutput> outputs = default);
static member RunStepDeltaCodeInterpreterDetailItemObject : string * seq<Azure.AI.Projects.RunStepDeltaCodeInterpreterOutput> -> Azure.AI.Projects.RunStepDeltaCodeInterpreterDetailItemObject
Public Shared Function RunStepDeltaCodeInterpreterDetailItemObject (Optional input As String = Nothing, Optional outputs As IEnumerable(Of RunStepDeltaCodeInterpreterOutput) = Nothing) As RunStepDeltaCodeInterpreterDetailItemObject
Parameters
- input
- String
The input into the Code Interpreter tool call.
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.
Please note RunStepDeltaCodeInterpreterOutput is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes.
The available derived classes include RunStepDeltaCodeInterpreterImageOutput and RunStepDeltaCodeInterpreterLogOutput.
Returns
A new RunStepDeltaCodeInterpreterDetailItemObject instance for mocking.
Applies to
Azure SDK for .NET