12 lines
396 B
C#
12 lines
396 B
C#
namespace Toak.Core.Skills;
|
|
|
|
public class SkillDefinition
|
|
{
|
|
public string Name { get; set; } = "";
|
|
public string Description { get; set; } = "";
|
|
public string[] Hotwords { get; set; } = System.Array.Empty<string>();
|
|
public string Action { get; set; } = "type"; // "type" or "script"
|
|
public string SystemPrompt { get; set; } = "";
|
|
public string? ScriptPath { get; set; }
|
|
}
|