diff --git a/src/Infrastructure/BotSharp.Core/Routing/Hooks/RoutingAgentHook.cs b/src/Infrastructure/BotSharp.Core/Routing/Hooks/RoutingAgentHook.cs index 17ed9c34..06a41c29 100644 --- a/src/Infrastructure/BotSharp.Core/Routing/Hooks/RoutingAgentHook.cs +++ b/src/Infrastructure/BotSharp.Core/Routing/Hooks/RoutingAgentHook.cs @@ -11,11 +11,11 @@ public class RoutingAgentHook : AgentHookBase public override bool OnFunctionsLoaded(ref List functions) { - functions.Add(new FunctionDef + /*functions.Add(new FunctionDef { Name = "fallback_to_router", Description = "If the user's request is beyond your capabilities, you can call this function for help." - }); + });*/ return base.OnFunctionsLoaded(ref functions); } }