10 lines
230 B
C#
10 lines
230 B
C#
|
|
namespace BotSharp.Plugin.KnowledgeBase.Hooks;
|
||
|
|
|
||
|
|
public class KnowledgeBaseUtilityHook : IAgentUtilityHook
|
||
|
|
{
|
||
|
|
public void AddUtilities(List<string> utilities)
|
||
|
|
{
|
||
|
|
utilities.Add(UtilityName.KnowledgeRetrieval);
|
||
|
|
}
|
||
|
|
}
|