@alexanderfortin/pi-tavily-tools 0.4.1 → 0.5.1
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/CHANGELOG.md +26 -9
- package/dist/tools/tavily/client.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,26 +1,43 @@
|
|
|
1
|
-
## [0.
|
|
1
|
+
## [0.5.1](https://github.com/shaftoe/pi-tavily-tools/compare/v0.5.0...v0.5.1) (2026-04-08)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
- ensure release process create a clean changelog ([a75777d](https://github.com/shaftoe/pi-tavily-tools/commit/a75777ddc8a31b6357f478e27bb5092e9df9fef3))
|
|
7
|
+
|
|
8
|
+
# Changelog
|
|
9
|
+
|
|
10
|
+
All notable changes to this project will be documented in this file.
|
|
11
|
+
|
|
12
|
+
This project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and
|
|
13
|
+
uses [semantic-release](https://semantic-release.gitbook.io/) for automated releases.
|
|
14
|
+
The format is based on [Keep a Changelog](https://keepachangelog.org/en/1.1.0/).
|
|
7
15
|
|
|
8
|
-
|
|
16
|
+
## [0.5.0](https://github.com/shaftoe/pi-tavily-tools/compare/v0.4.1...v0.5.0) (2026-04-08)
|
|
9
17
|
|
|
10
18
|
### Bug Fixes
|
|
11
19
|
|
|
12
|
-
-
|
|
20
|
+
- format changelog to make linter happy ([c7987f5](https://github.com/shaftoe/pi-tavily-tools/commit/c7987f547cc91d64475062dc22365311067e54e8))
|
|
13
21
|
|
|
14
22
|
### Features
|
|
15
23
|
|
|
16
|
-
-
|
|
24
|
+
- increase default max_results from 5 to 8 ([661a995](https://github.com/shaftoe/pi-tavily-tools/commit/661a9957911afcbd170d0318308a56f4653e8dc4))
|
|
17
25
|
|
|
18
|
-
|
|
26
|
+
## [0.4.1](https://github.com/shaftoe/pi-tavily-tools/compare/v0.4.0...v0.4.1) (2026-04-08)
|
|
19
27
|
|
|
20
|
-
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
- sanitize provider errors to prevent credential leakage ([#7](https://github.com/shaftoe/pi-tavily-tools/issues/7)) ([792a0a2](https://github.com/shaftoe/pi-tavily-tools/commit/792a0a28dcfb8e82a2711db16c492769b1361504))
|
|
31
|
+
|
|
32
|
+
## [0.4.0](https://github.com/shaftoe/pi-tavily-tools/compare/v0.3.1...v0.4.0) (2026-04-08)
|
|
33
|
+
|
|
34
|
+
### Bug Fixes
|
|
21
35
|
|
|
22
|
-
|
|
23
|
-
|
|
36
|
+
- forward abort signal, clean temp files, warn on missing API key ([#6](https://github.com/shaftoe/pi-tavily-tools/issues/6)) ([d18529c](https://github.com/shaftoe/pi-tavily-tools/commit/d18529cc8c48ae1575e2405fd89e93233b4ddb7e))
|
|
37
|
+
|
|
38
|
+
### Features
|
|
39
|
+
|
|
40
|
+
- add semantic release to automate releases ([ae572b0](https://github.com/shaftoe/pi-tavily-tools/commit/ae572b0c2c2529e8b9abc2b70268390bb226aba8))
|
|
24
41
|
|
|
25
42
|
## [0.3.1] - 2026-04-06
|
|
26
43
|
|
|
@@ -30,7 +30,7 @@ export function createTavilyClient(apiKey) {
|
|
|
30
30
|
*/
|
|
31
31
|
export function buildSearchOptions(params) {
|
|
32
32
|
return {
|
|
33
|
-
maxResults: typeof params.max_results === "number" ? Math.max(1, Math.min(20, params.max_results)) :
|
|
33
|
+
maxResults: typeof params.max_results === "number" ? Math.max(1, Math.min(20, params.max_results)) : 8,
|
|
34
34
|
searchDepth: params.search_depth ?? "basic",
|
|
35
35
|
includeAnswer: params.include_answer !== false,
|
|
36
36
|
includeImages: params.include_images === true,
|
package/package.json
CHANGED