Table of Contents

Property Score

Namespace
LMKit.Agents.Skills
Assembly
LM-Kit.NET.dll

Score

Gets the match score between 0.0 (no match) and 1.0 (perfect match).

Higher scores indicate stronger relevance to the user's request.

public float Score { get; }

Property Value

float

Examples

Checking match scores:

var matches = registry.FindMatches("review my code");
foreach (var match in matches)
{
    Console.WriteLine($"{match.Skill.Name}: {match.Score:P0}");
    // Output: "code-review: 85%"
}