UNPKG

n8n

Version:

n8n Workflow Automation Tool

14 lines (13 loc) 505 B
import { WithTimestampsAndStringId } from '@n8n/db'; export type ObservationMarker = 'critical' | 'important' | 'info' | 'completion'; export type ObservationStatus = 'active' | 'superseded' | 'dropped'; export declare class AgentObservationEntity extends WithTimestampsAndStringId { agentId: string; observationScopeId: string; marker: ObservationMarker; text: string; parentId: string | null; tokenCount: number; status: ObservationStatus; supersededBy: string | null; }