@axiom-lattice/core 2.0.0 → 2.0.1

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.js CHANGED
@@ -1436,12 +1436,13 @@ var DeepAgentGraphBuilder = class {
1436
1436
  return createDeepAgent({
1437
1437
  tools,
1438
1438
  model: params.model,
1439
+ stateSchema: params.stateSchema,
1439
1440
  instructions: params.prompt,
1440
1441
  subagents: params.subAgents.map((sa) => ({
1441
1442
  name: sa.key,
1442
1443
  description: sa.config.description,
1443
1444
  prompt: sa.config.prompt,
1444
- tools: sa.config.tools || []
1445
+ tools: sa.config.tools
1445
1446
  }))
1446
1447
  });
1447
1448
  }