diff --git a/.changeset/byok-llm-config.md b/.changeset/byok-llm-config.md deleted file mode 100644 index ea9ed8c..0000000 --- a/.changeset/byok-llm-config.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ontos-ai/knowhere-sdk": minor ---- - -Add optional BYOK `llmConfig` on job create, parse, and retrieval query so callers can supply per-request text/vision provider credentials. diff --git a/.changeset/oss-telemetry-client-metadata.md b/.changeset/oss-telemetry-client-metadata.md deleted file mode 100644 index 3fe708f..0000000 --- a/.changeset/oss-telemetry-client-metadata.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@ontos-ai/knowhere-sdk": patch -"@ontos-ai/knowhere-mcp": patch ---- - -Auto-attach official `created_by_client` / `client_version` document metadata on job creates so OSS telemetry can attribute client mix. Caller-provided metadata still wins. diff --git a/.changeset/remove-sync-mcp-parse-tools.md b/.changeset/remove-sync-mcp-parse-tools.md deleted file mode 100644 index 10fe199..0000000 --- a/.changeset/remove-sync-mcp-parse-tools.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ontos-ai/knowhere-mcp": major ---- - -Remove the blocking `knowhere_parse_url` and `knowhere_parse_file` tools from the MCP server. Agents should use the async parse tools and poll `knowhere_async_get_job_status` before reading parsed results. diff --git a/CHANGELOG.md b/CHANGELOG.md index 206f2c3..4cd2271 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 2.2.0 + +### Minor Changes + +- [#123](https://github.com/Ontos-AI/knowhere-node-sdk/pull/123) [`ff5a803`](https://github.com/Ontos-AI/knowhere-node-sdk/commit/ff5a80352b53b3286f4bd4f068a8a4a826179292) Thanks [@suguanYang](https://github.com/suguanYang)! - Add optional BYOK `llmConfig` on job create, parse, and retrieval query so callers can supply per-request text/vision provider credentials. + +### Patch Changes + +- [#122](https://github.com/Ontos-AI/knowhere-node-sdk/pull/122) [`5d9d54d`](https://github.com/Ontos-AI/knowhere-node-sdk/commit/5d9d54d119c21fae51640df0754a51874655b648) Thanks [@suguanYang](https://github.com/suguanYang)! - Auto-attach official `created_by_client` / `client_version` document metadata on job creates so OSS telemetry can attribute client mix. Caller-provided metadata still wins. + ## 2.1.3 ### Patch Changes diff --git a/package.json b/package.json index 0ecdc1f..aebe7f4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ontos-ai/knowhere-sdk", - "version": "2.1.3", + "version": "2.2.0", "description": "Official Node.js SDK for Knowhere document parsing API", "keywords": [ "knowhere", diff --git a/packages/mcp/CHANGELOG.md b/packages/mcp/CHANGELOG.md index 98e5788..b65a292 100644 --- a/packages/mcp/CHANGELOG.md +++ b/packages/mcp/CHANGELOG.md @@ -1,5 +1,18 @@ # @ontos-ai/knowhere-mcp +## 3.0.0 + +### Major Changes + +- [#120](https://github.com/Ontos-AI/knowhere-node-sdk/pull/120) [`eb7d931`](https://github.com/Ontos-AI/knowhere-node-sdk/commit/eb7d9319a35796d4dd96f71f013dea59b4208a97) Thanks [@suguanYang](https://github.com/suguanYang)! - Remove the blocking `knowhere_parse_url` and `knowhere_parse_file` tools from the MCP server. Agents should use the async parse tools and poll `knowhere_async_get_job_status` before reading parsed results. + +### Patch Changes + +- [#122](https://github.com/Ontos-AI/knowhere-node-sdk/pull/122) [`5d9d54d`](https://github.com/Ontos-AI/knowhere-node-sdk/commit/5d9d54d119c21fae51640df0754a51874655b648) Thanks [@suguanYang](https://github.com/suguanYang)! - Auto-attach official `created_by_client` / `client_version` document metadata on job creates so OSS telemetry can attribute client mix. Caller-provided metadata still wins. + +- Updated dependencies [[`ff5a803`](https://github.com/Ontos-AI/knowhere-node-sdk/commit/ff5a80352b53b3286f4bd4f068a8a4a826179292), [`5d9d54d`](https://github.com/Ontos-AI/knowhere-node-sdk/commit/5d9d54d119c21fae51640df0754a51874655b648)]: + - @ontos-ai/knowhere-sdk@2.2.0 + ## 2.1.4 ### Patch Changes diff --git a/packages/mcp/package.json b/packages/mcp/package.json index 6115efe..c1d7daf 100644 --- a/packages/mcp/package.json +++ b/packages/mcp/package.json @@ -1,6 +1,6 @@ { "name": "@ontos-ai/knowhere-mcp", - "version": "2.1.4", + "version": "3.0.0", "description": "MCP wrapper for the Knowhere Node.js SDK local knowledge tools", "keywords": [ "knowhere",