@sisu-ai/mw-react-parser 3.0.0 → 3.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 +11 -0
- package/package.json +12 -3
package/README.md
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
# @sisu-ai/mw-react-parser
|
|
2
|
+
[](https://github.com/finger-gun/sisu/actions/workflows/tests.yml)
|
|
3
|
+
[](https://github.com/finger-gun/sisu/blob/main/LICENSE)
|
|
4
|
+
[](https://www.npmjs.com/package/@sisu-ai/mw-react-parser)
|
|
5
|
+
[](https://github.com/finger-gun/sisu/blob/main/CONTRIBUTING.md)
|
|
2
6
|
|
|
3
7
|
Lightweight ReAct-style tool loop. Lets the model decide an action in natural language, you parse it, execute, and then the model reflects and answers.
|
|
4
8
|
|
|
@@ -31,3 +35,10 @@ Prompting tip
|
|
|
31
35
|
Customizing
|
|
32
36
|
- Provide your own tools via `@sisu-ai/mw-register-tools` and define strict zod schemas for reliable parsing.
|
|
33
37
|
- If you need a different action syntax, build a small middleware before/after to transform the assistant message.
|
|
38
|
+
|
|
39
|
+
# Community & Support
|
|
40
|
+
- [Code of Conduct](https://github.com/finger-gun/sisu/blob/main/CODE_OF_CONDUCT.md)
|
|
41
|
+
- [Contributing Guide](https://github.com/finger-gun/sisu/blob/main/CONTRIBUTING.md)
|
|
42
|
+
- [License](https://github.com/finger-gun/sisu/blob/main/LICENSE)
|
|
43
|
+
- [Report a Bug](https://github.com/finger-gun/sisu/issues/new?template=bug_report.md)
|
|
44
|
+
- [Request a Feature](https://github.com/finger-gun/sisu/issues/new?template=feature_request.md)
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sisu-ai/mw-react-parser",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
|
+
"license": "Apache-2.0",
|
|
4
5
|
"type": "module",
|
|
5
6
|
"main": "dist/index.js",
|
|
6
7
|
"types": "dist/index.d.ts",
|
|
@@ -14,7 +15,7 @@
|
|
|
14
15
|
"build": "tsc -b"
|
|
15
16
|
},
|
|
16
17
|
"peerDependencies": {
|
|
17
|
-
"@sisu-ai/core": "1.0.
|
|
18
|
+
"@sisu-ai/core": "1.0.2"
|
|
18
19
|
},
|
|
19
20
|
"repository": {
|
|
20
21
|
"type": "git",
|
|
@@ -24,5 +25,13 @@
|
|
|
24
25
|
"homepage": "https://github.com/finger-gun/sisu#readme",
|
|
25
26
|
"bugs": {
|
|
26
27
|
"url": "https://github.com/finger-gun/sisu/issues"
|
|
27
|
-
}
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"sisu",
|
|
31
|
+
"ai",
|
|
32
|
+
"ai-agent",
|
|
33
|
+
"agentic",
|
|
34
|
+
"middleware",
|
|
35
|
+
"react-parser"
|
|
36
|
+
]
|
|
28
37
|
}
|