prodigy 0.4.4

Turn ad-hoc Claude sessions into reproducible development pipelines with parallel AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: test-mapreduce
mode: mapreduce

# Simple test without heavy setup
map:
  input: "echo '[{\"id\": 1}, {\"id\": 2}, {\"id\": 3}]'"
  json_path: "$[*]"

  agent_template:
    - shell: "echo 'Processing item ${item.id}'"

  max_parallel: 2

reduce:
  - shell: "echo 'Processed ${map.successful} items'"