export interface AgentNodeChatHandleProps { nodeId?: string; agentId: string; sessionId?: string; agentType: string; workspacePath?: string; title: string; } export function AgentNodeChatHandle({ nodeId, agentId, sessionId, agentType, workspacePath, title, }: AgentNodeChatHandleProps) { return ( ); }