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.
- package/README.md +5 -3
- 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
|
-
|
|
41
|
-
|
|
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
|
|
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
|
|