@forwardimpact/libeval 0.1.12 → 0.1.13

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forwardimpact/libeval",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "Process Claude Code stream-json output into structured traces",
5
5
  "license": "Apache-2.0",
6
6
  "author": "D. Olsson <hi@senzilla.io>",
package/src/supervisor.js CHANGED
@@ -72,7 +72,7 @@ export class Supervisor {
72
72
  this.agentRunner = agentRunner;
73
73
  this.supervisorRunner = supervisorRunner;
74
74
  this.output = output;
75
- this.maxTurns = maxTurns ?? 20;
75
+ this.maxTurns = maxTurns ?? 100;
76
76
  /** @type {"agent"|"supervisor"} */
77
77
  this.currentSource = "agent";
78
78
  /** @type {number} */
@@ -505,7 +505,7 @@ export function createSupervisor({
505
505
  query,
506
506
  output: new PassThrough(),
507
507
  model,
508
- maxTurns: 10,
508
+ maxTurns: 20,
509
509
  allowedTools: supervisorAllowedTools ?? [
510
510
  "Bash",
511
511
  "Read",