Interface ReasoningTraceEntry

A single entry in the GMI's reasoning trace, providing an auditable log of its operations. ReasoningTraceEntry

interface ReasoningTraceEntry {
    timestamp: Date;
    type: ReasoningEntryType;
    message: string;
    details?: Record<string, any>;
}

Properties

timestamp: Date
message: string
details?: Record<string, any>