@sisu-ai/tool-wikipedia 2.0.1 → 2.0.3
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 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Wikipedia lookup tool using the REST API. Fetch a page summary, HTML, or related pages given an approximate title. The REST API performs redirects and normalization, so near-matches often resolve.
|
|
4
4
|
|
|
5
|
+
[](https://github.com/finger-gun/sisu/actions/workflows/tests.yml)
|
|
6
|
+
[](https://github.com/finger-gun/sisu/blob/main/LICENSE)
|
|
7
|
+
[](https://www.npmjs.com/package/@sisu-ai/tool-wikipedia)
|
|
8
|
+
[](https://github.com/finger-gun/sisu/blob/main/CONTRIBUTING.md)
|
|
9
|
+
|
|
5
10
|
Install
|
|
6
11
|
```bash
|
|
7
12
|
npm i @sisu-ai/tool-wikipedia
|
|
@@ -39,3 +44,13 @@ Returns
|
|
|
39
44
|
Notes
|
|
40
45
|
- For search-like behavior, consider calling `related` first and then fetching the best candidate's `summary`.
|
|
41
46
|
|
|
47
|
+
# Community & Support
|
|
48
|
+
|
|
49
|
+
Discover what you can do through examples or documentation. Check it out at https://github.com/finger-gun/sisu. Example projects live under [`examples/`](https://github.com/finger-gun/sisu/tree/main/examples) in the repo.
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
- [Code of Conduct](https://github.com/finger-gun/sisu/blob/main/CODE_OF_CONDUCT.md)
|
|
53
|
+
- [Contributing Guide](https://github.com/finger-gun/sisu/blob/main/CONTRIBUTING.md)
|
|
54
|
+
- [License](https://github.com/finger-gun/sisu/blob/main/LICENSE)
|
|
55
|
+
- [Report a Bug](https://github.com/finger-gun/sisu/issues/new?template=bug_report.md)
|
|
56
|
+
- [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-wikipedia",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3",
|
|
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",
|