Interface AgentOSActiveGMISnapshot

interface AgentOSActiveGMISnapshot {
    gmiId: string;
    personaId: string;
    state: string;
    createdAt: string;
    hasCognitiveMemory: boolean;
    reasoningTraceEntries: number;
    workingMemoryKeys: number;
    cognitiveMemory?: {
        totalTraces: number;
        activeTraces: number;
        workingMemorySlots: number;
        workingMemoryCapacity: number;
        prospectiveCount: number;
    };
}

Properties

gmiId: string
personaId: string
state: string
createdAt: string
hasCognitiveMemory: boolean
reasoningTraceEntries: number
workingMemoryKeys: number
cognitiveMemory?: {
    totalTraces: number;
    activeTraces: number;
    workingMemorySlots: number;
    workingMemoryCapacity: number;
    prospectiveCount: number;
}

Type declaration

  • totalTraces: number
  • activeTraces: number
  • workingMemorySlots: number
  • workingMemoryCapacity: number
  • prospectiveCount: number