Interface AgencyMemoryStats

Statistics for agency memory.

interface AgencyMemoryStats {
    totalDocuments: number;
    totalChunks: number;
    documentsByRole: Record<string, number>;
    documentsByCategory: Record<string, number>;
    lastIngestionAt?: string;
}

Properties

totalDocuments: number

Total documents in shared memory

totalChunks: number

Total chunks

documentsByRole: Record<string, number>

Documents by role

documentsByCategory: Record<string, number>

Documents by category

lastIngestionAt?: string

Last ingestion timestamp