UNPKG

ai-ip-plugin

Version:

AI-IP Plugin for MCP Workflow Management with SSE streaming and event handling

27 lines 784 B
/** * Agent related utility functions */ import { MessageItem } from '../types'; /** Agent Name Mapping */ export declare const AgentNameMap: Record<string, string>; /** * Get agent display name */ export declare function getAgentName(agentType: string): string; /** * Create agent template based on agent type */ export declare function createAgentTemplate(agentName: string): MessageItem; /** * Check if agent is a tool-based agent */ export declare function isToolAgent(agentType: string): boolean; /** * Check if agent is a polisher agent */ export declare function isPolisherAgent(agentType: string): boolean; /** * Check if agent is a content generation agent */ export declare function isContentAgent(agentType: string): boolean; //# sourceMappingURL=agent.d.ts.map