@nbardy/oompa 0.4.7 → 0.4.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -393,11 +393,12 @@
393
393
  (println (format " Review: %s:%s" (name (:harness review-model)) (:model review-model))))
394
394
  (println (format " Workers: %d total" (count workers)))
395
395
  (doseq [[idx wc] (map-indexed vector worker-configs)]
396
- (let [{:keys [harness model]} (parse-model-string (:model wc))]
397
- (println (format " - %dx %s:%s (%d iters%s)"
396
+ (let [{:keys [harness model reasoning]} (parse-model-string (:model wc))]
397
+ (println (format " - %dx %s:%s%s (%d iters%s)"
398
398
  (or (:count wc) 1)
399
399
  (name harness)
400
400
  model
401
+ (if reasoning (str ":" reasoning) "")
401
402
  (or (:iterations wc) 10)
402
403
  (if (:prompt wc) (str ", " (:prompt wc)) "")))))
403
404
  (println)
@@ -455,10 +455,11 @@
455
455
  [worker]
456
456
  (tasks/ensure-dirs!)
457
457
  (let [{:keys [id iterations]} worker]
458
- (println (format "[%s] Starting worker (%s:%s, %d iterations)"
458
+ (println (format "[%s] Starting worker (%s:%s%s, %d iterations)"
459
459
  id
460
460
  (name (:harness worker))
461
461
  (or (:model worker) "default")
462
+ (if (:reasoning worker) (str ":" (:reasoning worker)) "")
462
463
  iterations))
463
464
 
464
465
  ;; Backpressure: workers that can't create tasks wait for tasks to exist
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nbardy/oompa",
3
- "version": "0.4.7",
3
+ "version": "0.4.8",
4
4
  "description": "Git-worktree multi-agent swarm orchestrator for Codex and Claude",
5
5
  "license": "MIT",
6
6
  "type": "commonjs",