@lloyal-labs/lloyal-agents 3.0.1 → 3.0.2

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -18,7 +18,7 @@ yield* withSpine({ systemPrompt: PLAYBOOKS, tools }, function* (spine) {
18
18
  ),
19
19
  tools: [...sourceTools, reportTool],
20
20
  parent: spine,
21
- terminalTool: "report",
21
+ terminal: reportTool,
22
22
  });
23
23
  });
24
24
  ```
@@ -84,7 +84,7 @@ yield* withSpine(
84
84
  ),
85
85
  tools: [...sourceTools, reportTool],
86
86
  parent: spine,
87
- terminalTool: "report",
87
+ terminal: reportTool,
88
88
  });
89
89
  },
90
90
  );
@@ -188,7 +188,7 @@ Tool result prefill in the SETTLE phase is budget-gated against a fresh pressure
188
188
  ```typescript
189
189
  yield* agentPool({
190
190
  orchestrate: parallel(tasks),
191
- tools, terminalTool: "report",
191
+ tools, terminal: reportTool,
192
192
  policy: new DefaultAgentPolicy({
193
193
  budget: { context: { softLimit: 2048 } }, // reserve 2K for downstream
194
194
  }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lloyal-labs/lloyal-agents",
3
- "version": "3.0.1",
3
+ "version": "3.0.2",
4
4
  "description": "Multi-agent inference inside the decode loop \u2014 structured concurrency over shared KV state",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",