@sisu-ai/mw-orchestration 0.2.1 → 1.0.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/README.md +15 -8
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,12 +1,6 @@
|
|
|
1
|
-
<div align="right">
|
|
2
|
-
<a href="https://github.com/finger-gun/sisu"><img src="https://github.com/finger-gun/sisu/raw/main/sisu-light.svg" alt="ProjectSpecs" width="100" /></a>
|
|
3
|
-
</div>
|
|
4
|
-
|
|
5
|
-
---
|
|
6
|
-
|
|
7
1
|
# @sisu-ai/mw-orchestration
|
|
8
2
|
|
|
9
|
-
|
|
3
|
+
Orchestrate delegated multi-agent execution with scoped children, explicit traces, and policy hooks.
|
|
10
4
|
|
|
11
5
|
## Install
|
|
12
6
|
|
|
@@ -125,9 +119,9 @@ const app = new Agent()
|
|
|
125
119
|
- [@sisu-ai/tool-azure-blob](packages/tools/azure-blob/README.md)
|
|
126
120
|
- [@sisu-ai/tool-extract-urls](packages/tools/extract-urls/README.md)
|
|
127
121
|
- [@sisu-ai/tool-github-projects](packages/tools/github-projects/README.md)
|
|
122
|
+
- [@sisu-ai/tool-rag](packages/tools/rag/README.md)
|
|
128
123
|
- [@sisu-ai/tool-summarize-text](packages/tools/summarize-text/README.md)
|
|
129
124
|
- [@sisu-ai/tool-terminal](packages/tools/terminal/README.md)
|
|
130
|
-
- [@sisu-ai/tool-vec-chroma](packages/tools/vec-chroma/README.md)
|
|
131
125
|
- [@sisu-ai/tool-web-fetch](packages/tools/web-fetch/README.md)
|
|
132
126
|
- [@sisu-ai/tool-web-search-duckduckgo](packages/tools/web-search-duckduckgo/README.md)
|
|
133
127
|
- [@sisu-ai/tool-web-search-google](packages/tools/web-search-google/README.md)
|
|
@@ -135,6 +129,19 @@ const app = new Agent()
|
|
|
135
129
|
- [@sisu-ai/tool-wikipedia](packages/tools/wikipedia/README.md)
|
|
136
130
|
</details>
|
|
137
131
|
|
|
132
|
+
<details>
|
|
133
|
+
<summary>All RAG packages</summary>
|
|
134
|
+
|
|
135
|
+
- [@sisu-ai/rag-core](packages/rag/core/README.md)
|
|
136
|
+
</details>
|
|
137
|
+
|
|
138
|
+
<details>
|
|
139
|
+
<summary>All vector packages</summary>
|
|
140
|
+
|
|
141
|
+
- [@sisu-ai/vector-core](packages/vector/core/README.md)
|
|
142
|
+
- [@sisu-ai/vector-chroma](packages/vector/chroma/README.md)
|
|
143
|
+
</details>
|
|
144
|
+
|
|
138
145
|
<details>
|
|
139
146
|
<summary>All examples</summary>
|
|
140
147
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sisu-ai/mw-orchestration",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -24,12 +24,12 @@
|
|
|
24
24
|
"zod": "^3.23.8"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
|
-
"@sisu-ai/core": "2.
|
|
27
|
+
"@sisu-ai/core": "2.4.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/node": "^24.3.1",
|
|
31
31
|
"vitest": "^3.2.4",
|
|
32
|
-
"@sisu-ai/core": "2.
|
|
32
|
+
"@sisu-ai/core": "2.4.0"
|
|
33
33
|
},
|
|
34
34
|
"keywords": [
|
|
35
35
|
"sisu",
|