Content-addressable embedding cache Deduplicates embeddings across the codebase to save API costs

interface EmbeddingCache {
    contentHash: string;
    embedding: number[];
    usageCount: number;
}

Properties

contentHash: string
embedding: number[]
usageCount: number