| 74 | // ── Collection Config ─────────────────────────────────────────────── |
| 75 | |
| 76 | interface CollectionConfig { |
| 77 | /** Wait for at least this many successful responses (default: 3) */ |
| 78 | minResponses?: number |
| 79 | /** Max time to wait for collection (default: 60000ms — longer than ULTRAPLINIAN) */ |
| 80 | hardTimeout?: number |
| 81 | /** Called as each model finishes */ |
| 82 | onModelResult?: (result: ModelResult, collected: number, total: number) => void |
| 83 | } |
| 84 | |
| 85 | // ── Orchestrator System Prompt ────────────────────────────────────── |
| 86 |
nothing calls this directly
no outgoing calls
no test coverage detected