@inkeep/agents-cli 0.17.0 → 0.18.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.
Files changed (3) hide show
  1. package/README.md +2 -2
  2. package/dist/index.js +666 -431
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -322,7 +322,7 @@ const assistantAgent = agent({
322
322
  export const graph = agentGraph({
323
323
  id: "my-assistant",
324
324
  name: "My Assistant Graph",
325
- defaultAgent: assistantAgent,
325
+ defaultSubAgent: assistantAgent,
326
326
  agents: {
327
327
  assistant: assistantAgent,
328
328
  },
@@ -498,7 +498,7 @@ const assistantAgent = agent({
498
498
  export const graph = agentGraph({
499
499
  id: "my-assistant",
500
500
  name: "My Assistant",
501
- defaultAgent: assistantAgent,
501
+ defaultSubAgent: assistantAgent,
502
502
  agents: { assistant: assistantAgent },
503
503
  });
504
504