@agentforge/patterns 0.12.6 → 0.14.0

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/dist/index.cjs CHANGED
@@ -2977,7 +2977,7 @@ function createMultiAgentSystem(config) {
2977
2977
  checkpointer
2978
2978
  } = config;
2979
2979
  const workflow = new import_langgraph4.StateGraph(MultiAgentState);
2980
- let supervisorConfig = { ...supervisor, maxIterations, verbose };
2980
+ const supervisorConfig = { ...supervisor, maxIterations, verbose };
2981
2981
  if (supervisor.model) {
2982
2982
  let configuredModel = supervisor.model;
2983
2983
  if (supervisor.strategy === "llm-based") {
package/dist/index.js CHANGED
@@ -2874,7 +2874,7 @@ function createMultiAgentSystem(config) {
2874
2874
  checkpointer
2875
2875
  } = config;
2876
2876
  const workflow = new StateGraph4(MultiAgentState);
2877
- let supervisorConfig = { ...supervisor, maxIterations, verbose };
2877
+ const supervisorConfig = { ...supervisor, maxIterations, verbose };
2878
2878
  if (supervisor.model) {
2879
2879
  let configuredModel = supervisor.model;
2880
2880
  if (supervisor.strategy === "llm-based") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentforge/patterns",
3
- "version": "0.12.6",
3
+ "version": "0.14.0",
4
4
  "description": "Agent patterns (ReAct, Planner-Executor) for AgentForge framework",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -36,13 +36,13 @@
36
36
  "url": "https://github.com/TVScoundrel/agentforge/issues"
37
37
  },
38
38
  "dependencies": {
39
- "@agentforge/core": "0.12.6",
39
+ "@agentforge/core": "0.14.0",
40
40
  "@langchain/core": "^1.1.17",
41
41
  "@langchain/langgraph": "^1.1.2",
42
42
  "zod": "^3.23.8"
43
43
  },
44
44
  "devDependencies": {
45
- "@agentforge/testing": "0.12.6",
45
+ "@agentforge/testing": "0.14.0",
46
46
  "@eslint/js": "^9.17.0",
47
47
  "@types/node": "^22.10.2",
48
48
  "eslint": "^9.17.0",