Share via


FunctionInvokingChatClient.AdditionalTools Property

Definition

Gets or sets a collection of additional tools the client is able to invoke.

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

Property Value

Remarks

These will not impact the requests sent by the FunctionInvokingChatClient, which will pass through the Tools unmodified. However, if the inner client requests the invocation of a tool that was not in Tools, this AdditionalTools collection will also be consulted to look for a corresponding tool to invoke. This is useful when the service might have been preconfigured to be aware of certain tools that aren't also sent on each individual request.

Applies to