Share via


CodeInterpreterToolCallContent.Inputs Property

Definition

Gets or sets the inputs to the code interpreter tool.

public:
 property System::Collections::Generic::IList<Microsoft::Extensions::AI::AIContent ^> ^ Inputs { System::Collections::Generic::IList<Microsoft::Extensions::AI::AIContent ^> ^ get(); void set(System::Collections::Generic::IList<Microsoft::Extensions::AI::AIContent ^> ^ value); };
public System.Collections.Generic.IList<Microsoft.Extensions.AI.AIContent>? Inputs { get; set; }
member this.Inputs : System.Collections.Generic.IList<Microsoft.Extensions.AI.AIContent> with get, set
Public Property Inputs As IList(Of AIContent)

Property Value

Remarks

Inputs can include various types of content such as HostedFileContent for files, DataContent for binary data, or other AIContent types as supported by the service. Typically Inputs includes a DataContent with a "text/x-python" media type representing the code for execution by the code interpreter tool.

Applies to