@exulu/backend 1.39.3 → 1.41.0
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 +8 -2
- package/changelog-backend-10.11.2025_03.12.2025.md +1 -1
- package/dist/index.cjs +662 -493
- package/dist/index.d.cts +88 -34
- package/dist/index.d.ts +88 -34
- package/dist/index.js +662 -493
- package/package.json +1 -1
- package/types/models/context.ts +8 -0
- package/types/models/item.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
# [1.41.0](https://github.com/Qventu/exulu-backend/compare/v1.40.0...v1.41.0) (2025-12-08)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
*
|
|
6
|
+
* various small issues ([1535adf](https://github.com/Qventu/exulu-backend/commit/1535adf56d1594b3415f96ccbea8af9eb56f5406))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* refactor processors to context-level with queue and database enhancements ([9436fb3](https://github.com/Qventu/exulu-backend/commit/9436fb3ae54aa1fd1903b7bdd4b6e3bdbf5a25b4))
|
|
12
|
+
* refactor vector search to return chunks with improved scoring and filtering ([4762cf3](https://github.com/Qventu/exulu-backend/commit/4762cf35030c1e14785fe3d22d4c916d723bda7c))
|
|
@@ -88,7 +88,7 @@ passing full message arrays for stateless interactions.
|
|
|
88
88
|
|
|
89
89
|
Also downgrades AI SDK from v5.0.95 to v5.0.65 for stability, adds cookie-parser dependency,
|
|
90
90
|
and improves context embedding generation with better metadata handling and increased timeout
|
|
91
|
-
limits. Enhances S3 integration with multi-bucket support
|
|
91
|
+
limits. Enhances S3 integration with multi-bucket support by making the bucket always be the part of the key before the first slash
|
|
92
92
|
improves vector search result limits, and adds better error handling for encrypted variables
|
|
93
93
|
and external ID lookups in context operations.
|
|
94
94
|
|