(rootDir: string)
| 411 | } |
| 412 | |
| 413 | export async function ensureMcpDataDir(rootDir: string): Promise<void> { |
| 414 | await mkdir(join(rootDir, CACHE_DIR), { recursive: true }); |
| 415 | } |
| 416 | |
| 417 | export async function loadEmbeddingCache(rootDir: string, fileName: string): Promise<EmbeddingCache> { |
| 418 | try { |
no outgoing calls
no test coverage detected