(inputs: string[])
| 61 | } |
| 62 | |
| 63 | async function fetchEmbeddings(inputs: string[]): Promise<number[][]> { |
| 64 | return fetchEmbedding(inputs); |
| 65 | } |
| 66 | |
| 67 | function isNavigableSourceCandidate(filePath: string): boolean { |
| 68 | return isSupportedFile(filePath) && !NON_CODE_NAVIGATE_EXTENSIONS.has(extname(filePath).toLowerCase()); |
no test coverage detected