This commit is contained in:
Jicheng Lu 2024-11-26 11:15:26 -06:00
parent 4ce52d50f6
commit 24f9f30a53
3 changed files with 3 additions and 3 deletions

View file

@ -58,7 +58,7 @@ public abstract class AgentHookBase : IAgentHook
{
}
public virtual void OnAgentUtilityloaded(Agent agent)
public virtual void OnAgentUtilityLoaded(Agent agent)
{
if (agent.Type == AgentType.Routing) return;

View file

@ -25,7 +25,7 @@ public interface IAgentHook
bool OnSamplesLoaded(List<string> samples);
void OnAgentUtilityloaded(Agent agent);
void OnAgentUtilityLoaded(Agent agent);
/// <summary>
/// Triggered when agent is loaded completely.

View file

@ -67,7 +67,7 @@ public partial class AgentService
hook.OnSamplesLoaded(agent.Samples);
}
hook.OnAgentUtilityloaded(agent);
hook.OnAgentUtilityLoaded(agent);
hook.OnAgentLoaded(agent);
}