(workDir: string)
| 32 | export const JOB_FILE = "job.json"; |
| 33 | |
| 34 | export function getJobFilePath(workDir: string): string { |
| 35 | return path.join(workDir, JOB_FILE); |
| 36 | } |
| 37 | |
| 38 | function normalizePromptExamples(promptExamples: string[] | undefined): string[] | undefined { |
| 39 | if (!Array.isArray(promptExamples)) { |
no outgoing calls
no test coverage detected