UNPKG

@memberjunction/ai-agent-manager-actions

Version:

Agent Management actions for creating and managing AI agents in MemberJunction

24 lines 944 B
import { ActionResultSimple, RunActionParams } from "@memberjunction/actions-base"; import { BaseAgentManagementAction } from "./base-agent-management.action"; /** * Associates an action with an agent. * This action is restricted to the Agent Manager agent only. * * @example * ```typescript * const result = await runAction({ * ActionName: 'Associate Action With Agent', * Params: [ * { Name: 'AgentID', Value: 'agent-id' }, * { Name: 'ActionID', Value: 'action-id' }, * { Name: 'Status', Value: 'Active' } // Optional, default 'Active' * ] * }); * // Returns AgentActionID in output params * ``` */ export declare class AssociateActionWithAgentAction extends BaseAgentManagementAction { protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>; } export declare function LoadAssociateActionWithAgentAction(): void; //# sourceMappingURL=associate-action-with-agent.action.d.ts.map