remove routing injection.

This commit is contained in:
hchen2020 2023-09-28 12:42:14 -05:00
parent 4e151d301b
commit e047963c59

View file

@ -11,11 +11,11 @@ public class RoutingAgentHook : AgentHookBase
public override bool OnFunctionsLoaded(ref List<FunctionDef> 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);
}
}