Parameters for tracing plugin hooks

interface TracePluginParams {
    pluginName: string;
    hook:
        | "before_agent"
        | "after_agent"
        | "before_model"
        | "after_model"
        | "on_event";
    agentName?: string;
    invocationContext?: InvocationContext;
}

Properties

pluginName: string
hook:
    | "before_agent"
    | "after_agent"
    | "before_model"
    | "after_model"
    | "on_event"
agentName?: string
invocationContext?: InvocationContext