@sisu-ai/tool-summarize-text 3.0.2 → 3.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.
Files changed (2) hide show
  1. package/README.md +7 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,11 +1,12 @@
1
1
  # Summarize Text Tool
2
+
3
+ A utility tool that asks the active model to summarize large text bodies into concise outputs. Designed for use alongside `webFetch` or other content tools.
4
+
2
5
  [![Tests](https://github.com/finger-gun/sisu/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/finger-gun/sisu/actions/workflows/tests.yml)
3
6
  [![License](https://img.shields.io/badge/license-Apache--2.0-blue)](https://github.com/finger-gun/sisu/blob/main/LICENSE)
4
7
  [![Downloads](https://img.shields.io/npm/dm/%40sisu-ai%2Ftool-summarize-text)](https://www.npmjs.com/package/@sisu-ai/tool-summarize-text)
5
8
  [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/finger-gun/sisu/blob/main/CONTRIBUTING.md)
6
9
 
7
- A utility tool that asks the active model to summarize large text bodies into concise outputs. Designed for use alongside `webFetch` or other content tools.
8
-
9
10
  ## Tool
10
11
  - `summarizeText` — Summarize a given `text` with optional controls for length and style.
11
12
 
@@ -22,6 +23,10 @@ A utility tool that asks the active model to summarize large text bodies into co
22
23
  - For very long inputs, applies a simple map-reduce (chunk→summary→combine) approach.
23
24
 
24
25
  # Community & Support
26
+
27
+ 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.
28
+
29
+
25
30
  - [Code of Conduct](https://github.com/finger-gun/sisu/blob/main/CODE_OF_CONDUCT.md)
26
31
  - [Contributing Guide](https://github.com/finger-gun/sisu/blob/main/CONTRIBUTING.md)
27
32
  - [License](https://github.com/finger-gun/sisu/blob/main/LICENSE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sisu-ai/tool-summarize-text",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",