1
0
Files
Toak/Core/Skills/ISkill.cs

14 lines
276 B
C#

namespace Toak.Core.Skills;
public interface ISkill
{
string Name { get; }
string Description { get; }
string[] Hotwords { get; }
bool HandlesExecution { get; }
string GetSystemPrompt(string rawTranscript);
void Execute(string llmResult);
}