@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 CHANGED
@@ -1,26 +1,43 @@
1
- ## [0.4.1](https://github.com/shaftoe/pi-tavily-tools/compare/v0.4.0...v0.4.1) (2026-04-08)
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
- * 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))
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
- # [0.4.0](https://github.com/shaftoe/pi-tavily-tools/compare/v0.3.1...v0.4.0) (2026-04-08)
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
- - 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))
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
- - add semantic release to automate releases ([ae572b0](https://github.com/shaftoe/pi-tavily-tools/commit/ae572b0c2c2529e8b9abc2b70268390bb226aba8))
24
+ - increase default max_results from 5 to 8 ([661a995](https://github.com/shaftoe/pi-tavily-tools/commit/661a9957911afcbd170d0318308a56f4653e8dc4))
17
25
 
18
- # Changelog
26
+ ## [0.4.1](https://github.com/shaftoe/pi-tavily-tools/compare/v0.4.0...v0.4.1) (2026-04-08)
19
27
 
20
- All notable changes to this project will be documented in this file.
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
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
23
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
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)) : 5,
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@alexanderfortin/pi-tavily-tools",
3
3
  "author": "Alexander Fortin",
4
- "version": "0.4.1",
4
+ "version": "0.5.1",
5
5
  "description": "Pi coding agent extension for web search and content extraction using Tavily",
6
6
  "keywords": [
7
7
  "pi-package",