Memory
Path:
pi-cybernetic/src/types/memory.tsRelative: src/types/memory.tsSubproject: pi-cyberneticCategory: cybernetic-coreLines: 80Bytes: 1,558Imports: 0Exports: 11
Content Preview
- /** Loop 4 — three-level memory hierarchy types (P6). */
- export interface InteractionTrace {
- id: string;
- kind: "tool" | "turn" | "error" | "note";
- text: string;
- timestamp: number;
- }
- export interface CompressedSummary {
- id: string;
- patternKey: string;
- summary: string;
- occurrences: number;
- sourceTraceIds: string[];
- createdAt: number;
- }
- export interface EntityRelation {
- subject: string;
- relation: string;
- object: string;
- }
- export interface Evidence {
- description: stri