UNPKG

@n8n-plus/n8n-plus

Version:

n8n Workflow Automation Tool (plus edition)

11 lines (10 loc) 348 B
import { WithTimestampsAndStringId } from '@n8n/db'; import { AgentThreadEntity } from './agent-thread.entity'; export declare class AgentMessageEntity extends WithTimestampsAndStringId { threadId: string; resourceId: string; role: string; type: string | null; content: Record<string, unknown>; thread: AgentThreadEntity; }