Share via


HostedCodeInterpreterTool.Inputs Property

Definition

Gets or sets a collection of AIContent to be used as input 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

Services support different varied kinds of inputs. Most support the IDs of files that are hosted by the service, represented via HostedFileContent. Some also support binary data, represented via DataContent. Unsupported inputs will be ignored by the IChatClient to which the tool is passed.

Applies to