(projectRoot: string)
| 60 | } |
| 61 | |
| 62 | function datasetPath(projectRoot: string): string { |
| 63 | const hash = createHash('sha1').update(projectRoot).digest('hex').slice(0, 16); |
| 64 | return path.join(os.homedir(), '.qodex', 'dataset', `${hash}.jsonl`); |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * Append one ShareGPT record for a successful task. Best-effort: a write failure is |
no test coverage detected