@smythos/sre 1.7.9 → 1.7.11
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 +7 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/types/subsystems/IO/VectorDB.service/embed/BaseEmbedding.d.ts +2 -1
- package/dist/types/subsystems/ObservabilityManager/Log.service/LogConnector.d.ts +17 -0
- package/dist/types/subsystems/ObservabilityManager/Log.service/connectors/ConsoleLog.class.d.ts +12 -0
- package/dist/types/subsystems/ObservabilityManager/Log.service/index.d.ts +4 -0
- package/package.json +1 -1
- package/src/subsystems/IO/VectorDB.service/embed/BaseEmbedding.ts +7 -3
- package/src/subsystems/IO/VectorDB.service/embed/index.ts +1 -0
package/CHANGELOG
CHANGED
|
@@ -5,6 +5,13 @@ All notable changes to the SmythOS CORE Runtime Engine will be documented in thi
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.7.9] 2025-11-09
|
|
9
|
+
|
|
10
|
+
- Fixed edge cases issues with SRE core initialization
|
|
11
|
+
- Add support for custom chunkSize and chunkOverlap for VectorDB embeddings
|
|
12
|
+
- normalized the embeddings parameters for VectorDB connectors
|
|
13
|
+
- JSONVaultConnector now detects missing vault and prompts the user to create it
|
|
14
|
+
|
|
8
15
|
## [1.7.1] 2025-10-30
|
|
9
16
|
|
|
10
17
|
- Core structures for triggers
|