(filePath: string)
| 65 | } |
| 66 | |
| 67 | function isNavigableSourceCandidate(filePath: string): boolean { |
| 68 | return isSupportedFile(filePath) && !NON_CODE_NAVIGATE_EXTENSIONS.has(extname(filePath).toLowerCase()); |
| 69 | } |
| 70 | |
| 71 | async function chatCompletion(prompt: string): Promise<string> { |
| 72 | if (EMBED_PROVIDER === "openai") { |
no test coverage detected