@sisu-ai/tool-web-fetch 2.0.1 → 2.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 +10 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
# @sisu-ai/tool-web-fetch
|
|
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/tool-web-fetch)
|
|
5
|
+
[](https://github.com/finger-gun/sisu/blob/main/CONTRIBUTING.md)
|
|
2
6
|
|
|
3
7
|
Fetch a web page by URL and return text, HTML, or JSON for LLM consumption.
|
|
4
8
|
|
|
@@ -28,3 +32,9 @@ Behavior
|
|
|
28
32
|
Notes
|
|
29
33
|
- This is a minimal fetcher to empower summarization / extraction workflows. For deeper crawling, add queueing, URL normalization, and robots.txt handling in upstream middleware.
|
|
30
34
|
|
|
35
|
+
# Community & Support
|
|
36
|
+
- [Code of Conduct](https://github.com/finger-gun/sisu/blob/main/CODE_OF_CONDUCT.md)
|
|
37
|
+
- [Contributing Guide](https://github.com/finger-gun/sisu/blob/main/CONTRIBUTING.md)
|
|
38
|
+
- [License](https://github.com/finger-gun/sisu/blob/main/LICENSE)
|
|
39
|
+
- [Report a Bug](https://github.com/finger-gun/sisu/issues/new?template=bug_report.md)
|
|
40
|
+
- [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/tool-web-fetch",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.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
|
"zod": "^3.23.8"
|
|
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",
|