Class TemplateInfo
Information about an available template.
public sealed class TemplateInfo
- Inheritance
-
TemplateInfo
- Inherited Members
Examples
Listing all built-in agent templates available in this assembly:
using LMKit.Agents.Templates;
foreach (TemplateInfo info in AgentTemplates.GetAvailableTemplates())
{
Console.WriteLine($"{info.Name} ({info.TemplateType.Name}) - {info.Description}");
}
Properties
- Description
Gets the template description.
- Name
Gets the template name.
- TemplateType
Gets the template type.