n8n
Version:
n8n Workflow Automation Tool
11 lines (10 loc) • 348 B
TypeScript
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;
}