@exulu/backend 1.8.0 → 1.8.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 +2 -7
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
## [1.8.1](https://github.com/Qventu/exulu-backend/compare/v1.8.0...v1.8.1) (2025-08-06)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
*
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
### Features
|
|
10
|
-
|
|
11
|
-
* upgrade to node 22 ([7287d05](https://github.com/Qventu/exulu-backend/commit/7287d056f932ded862c574cbb0a794b214c4a5de))
|
|
6
|
+
* json import syntax ([9eff3aa](https://github.com/Qventu/exulu-backend/commit/9eff3aabebe649ccae8a4cd6e1df81aef0799ae5))
|
|
12
7
|
|
|
13
8
|
# [1.1.0](https://github.com/Qventu/exulu-backend/compare/v1.0.1...v1.1.0) (2025-07-30)
|
|
14
9
|
|
package/dist/index.js
CHANGED
|
@@ -5096,8 +5096,8 @@ var RecursiveChunk = class _RecursiveChunk extends Chunk {
|
|
|
5096
5096
|
// src/chunking/tokenizer.ts
|
|
5097
5097
|
import { Tiktoken } from "tiktoken/lite";
|
|
5098
5098
|
import { load } from "tiktoken/load";
|
|
5099
|
-
import registry from "tiktoken/registry.json";
|
|
5100
|
-
import models from "tiktoken/model_to_encoding.json";
|
|
5099
|
+
import registry from "tiktoken/registry.json" with { type: "json" };
|
|
5100
|
+
import models from "tiktoken/model_to_encoding.json" with { type: "json" };
|
|
5101
5101
|
var ExuluTokenizer = class {
|
|
5102
5102
|
constructor() {
|
|
5103
5103
|
}
|