()
| 186 | } |
| 187 | |
| 188 | export function invalidateSearchCache(): void { |
| 189 | cachedIndex = null; |
| 190 | cachedRootDir = null; |
| 191 | lastIndexTime = 0; |
| 192 | } |
| 193 | |
| 194 | export async function refreshFileSearchEmbeddings(options: { rootDir: string; relativePaths: string[] }): Promise<number> { |
| 195 | const uniquePaths = Array.from(new Set(options.relativePaths.map(normalizeRelativePath).filter(Boolean))); |
no outgoing calls
no test coverage detected