Interface KnowledgeGraphStats

Statistics about the knowledge graph

interface KnowledgeGraphStats {
    totalEntities: number;
    totalRelations: number;
    totalMemories: number;
    entitiesByType: Record<EntityType, number>;
    relationsByType: Record<RelationType, number>;
    avgConfidence: number;
    oldestEntry: string;
    newestEntry: string;
}

Properties

totalEntities: number
totalRelations: number
totalMemories: number
entitiesByType: Record<EntityType, number>
relationsByType: Record<RelationType, number>
avgConfidence: number
oldestEntry: string
newestEntry: string