FunctionInvokingChatClient.AdditionalTools Property
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.
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.