Property AllowedTools
AllowedTools
Gets or sets the pre-approved tools for this skill.
Tools listed here may be granted access without per-use approval when the skill is active.
public IReadOnlyList<string> AllowedTools { get; set; }
Property Value
Examples
Listing allowed tools:
var context = activator.Activate("web-scraper");
Console.WriteLine($"Allowed tools: {string.Join(", ", context.AllowedTools)}");