Interface MemoryEdge

interface MemoryEdge {
    sourceId: string;
    targetId: string;
    type: MemoryEdgeType;
    weight: number;
    createdAt: number;
}

Properties

sourceId: string
targetId: string
weight: number
createdAt: number