14 lines
276 B
C#
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);
|
|
}
|