| rule create_numpy: | |
| params: | |
| max_iter = config.get('max_iterations', 3) | |
| input: | |
| [ | |
| "{BASE_DIR}/solution/arrays/file_list.txt", | |
| "{BASE_DIR}/solution/arrays/create_numpy_soln.txt" | |
| ] | |
| output: | |
| [ | |
| "{BASE_DIR}/arrays/signal_WH_raw.npy", | |
| "{BASE_DIR}/arrays/data_A_raw.npy" | |
| ] | |
| shell: | |
| "python supervisor_coder.py --prompt create_numpy --out_dir {BASE_DIR} --config {CONFIG} --input-files {input} --output-files {output} --max_iterations {params.max_iter}" |