agent-swarm-kit 1.0.0 → 1.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 +5 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -37,8 +37,10 @@ const NAVIGATE_TOOL = addTool({
37
37
  parameters: {
38
38
  type: "object",
39
39
  properties: {
40
- type: "string",
41
- description: "The target agent for navigation",
40
+ to: {
41
+ type: "string",
42
+ description: "The target agent for navigation",
43
+ },
42
44
  },
43
45
  required: ["to"],
44
46
  },
@@ -110,7 +112,7 @@ app.get("/api/v1/session/:clientId", upgradeWebSocket((ctx) => {
110
112
 
111
113
  ```
112
114
 
113
- The feature of this library is dependency inversion for agents injection. The agents are being lazy loaded during runtime, so you can declare them in separate modules connecting them to swarm with a string constant
115
+ The feature of this library is dependency inversion for agents injection. The agents are being lazy loaded during runtime, so you can declare them in separate modules and connect them to swarm with a string constant
114
116
 
115
117
  ```tsx
116
118
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-swarm-kit",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "A TypeScript library for building orchestrated framework-agnostic multi-agent AI systems",
5
5
  "author": {
6
6
  "name": "Petr Tripolsky",