n8n
Version:
n8n Workflow Automation Tool
13 lines (12 loc) • 435 B
TypeScript
import { WithTimestamps } from '@n8n/db';
import type { SerializableAgentState } from '@n8n/instance-ai';
import { InstanceAiThread } from './instance-ai-thread.entity';
export declare class InstanceAiCheckpoint extends WithTimestamps {
key: string;
runId: string | null;
thread: InstanceAiThread;
threadId: string;
resourceId: string | null;
state: SerializableAgentState | null;
expiredAt: Date | null;
}