Share via


IntentResolutionEvaluatorContext.ToolDefinitions Property

Definition

Gets set of tool definitions (see Tools) that were used when generating the model response that is being evaluated.

public:
 property System::Collections::Generic::IReadOnlyList<Microsoft::Extensions::AI::AITool ^> ^ ToolDefinitions { System::Collections::Generic::IReadOnlyList<Microsoft::Extensions::AI::AITool ^> ^ get(); };
public System.Collections.Generic.IReadOnlyList<Microsoft.Extensions.AI.AITool> ToolDefinitions { get; }
member this.ToolDefinitions : System.Collections.Generic.IReadOnlyList<Microsoft.Extensions.AI.AITool>
Public ReadOnly Property ToolDefinitions As IReadOnlyList(Of AITool)

Property Value

Remarks

IntentResolutionEvaluator evaluates an AI system's effectiveness at identifying and resolving user intent based on the supplied conversation history and the tool definitions supplied via ToolDefinitions.

Note that at the moment, IntentResolutionEvaluator only supports evaluating calls to tools that are defined as AIFunctions. Any other AITool definitions that are supplied via ToolDefinitions will be ignored.

Applies to