(rootDir: string)
| 403 | } |
| 404 | |
| 405 | async function loadCache(rootDir: string): Promise<EmbeddingCache> { |
| 406 | return loadEmbeddingCache(rootDir, CACHE_FILE); |
| 407 | } |
| 408 | |
| 409 | async function saveCache(rootDir: string, cache: EmbeddingCache): Promise<void> { |
| 410 | await saveEmbeddingCache(rootDir, cache, CACHE_FILE); |
no test coverage detected