Table of Contents

Property Resources

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

Resources

Gets or sets the available resources bundled with the skill.

Resources include scripts, reference documentation, and assets that can be loaded on demand.

public IReadOnlyList<SkillResource> Resources { get; set; }

Property Value

IReadOnlyList<SkillResource>

Examples

Listing available resources:

var context = activator.Activate("api-designer");
foreach (var resource in context.Resources)
{
    Console.WriteLine($"{resource.Type}: {resource.RelativePath}");
}