@smythos/sre 1.5.74 → 1.6.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 +16 -10
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/dist/types/Components/Component.class.d.ts +16 -2
- package/dist/types/helpers/AIPerformanceAnalyzer.helper.d.ts +45 -0
- package/dist/types/helpers/AIPerformanceCollector.helper.d.ts +111 -0
- package/dist/types/helpers/Conversation.helper.d.ts +1 -0
- package/dist/types/index.d.ts +1 -1
- package/dist/types/subsystems/IO/VectorDB.service/connectors/MilvusVectorDB.class.d.ts +7 -1
- package/dist/types/subsystems/IO/VectorDB.service/connectors/PineconeVectorDB.class.d.ts +1 -1
- package/dist/types/subsystems/IO/VectorDB.service/connectors/RAMVecrtorDB.class.d.ts +8 -5
- package/dist/types/subsystems/IO/VectorDB.service/connectors/WeaviateVectorDB.class.d.ts +187 -0
- package/dist/types/subsystems/MemoryManager/RuntimeContext.d.ts +1 -0
- package/dist/types/subsystems/PerformanceManager/Performance.service/PerformanceConnector.d.ts +102 -0
- package/dist/types/subsystems/PerformanceManager/Performance.service/connectors/LocalPerformanceConnector.class.d.ts +100 -0
- package/dist/types/subsystems/PerformanceManager/Performance.service/index.d.ts +22 -0
- package/dist/types/subsystems/Security/Account.service/connectors/MySQLAccount.class.d.ts +19 -0
- package/dist/types/types/Performance.types.d.ts +468 -0
- package/package.json +1 -1
- package/src/Components/Component.class.ts +16 -2
- package/src/helpers/Conversation.helper.ts +9 -1
- package/src/index.ts +1 -1
- package/src/index.ts.bak +1 -1
- package/src/subsystems/IO/Storage.service/SmythFS.class.ts +3 -4
- package/src/subsystems/IO/VectorDB.service/connectors/MilvusVectorDB.class.ts +12 -1
- package/src/subsystems/IO/VectorDB.service/connectors/PineconeVectorDB.class.ts +4 -1
- package/src/subsystems/IO/VectorDB.service/connectors/RAMVecrtorDB.class.ts +48 -46
- package/src/subsystems/MemoryManager/Cache.service/connectors/RAMCache.class.ts +14 -1
- package/src/subsystems/MemoryManager/RuntimeContext.ts +9 -2
- package/src/subsystems/Security/Account.service/connectors/JSONFileAccount.class.ts +6 -1
- package/src/subsystems/Security/Account.service/connectors/{AWSAccount.class.ts → MySQLAccount.class.ts} +3 -3
- package/src/subsystems/Security/Account.service/index.ts +2 -2
package/CHANGELOG
CHANGED
|
@@ -5,6 +5,22 @@ 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.6.0]
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
- Add Memory Components
|
|
13
|
+
- Add Milvus VectorDB Connector
|
|
14
|
+
- Add support to Google embeddings
|
|
15
|
+
- Add support to OpenAI responses API
|
|
16
|
+
- Agent Runtime optimizations : better memory management + stability fixes
|
|
17
|
+
|
|
18
|
+
### Code and tooling
|
|
19
|
+
|
|
20
|
+
- Added multiple unit tests for a better code coveragge
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- Updated .cursor/rules/sre-ai-rules.mdc to enhance the qualty of AI based contributions
|
|
23
|
+
|
|
8
24
|
## [v1.5.60]
|
|
9
25
|
|
|
10
26
|
### Features
|
|
@@ -56,16 +72,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
56
72
|
- Implemented an SDK that provides an abstracted interface for all SmythOS components
|
|
57
73
|
- Implemented a CLI to help running agents and scaffolding SDK and SRE projects along
|
|
58
74
|
|
|
59
|
-
## [v1.4.5]
|
|
60
|
-
|
|
61
|
-
### Features
|
|
62
|
-
|
|
63
|
-
- New connectors : JSON Account connector, RAMVec vectordb, localStorage
|
|
64
|
-
- Conversation manager: better handling of agent chats
|
|
65
|
-
- logger becomes a connector
|
|
66
|
-
- Add support for usage reporting
|
|
67
|
-
- LLM : Refactored and simplified LLM Connector interface
|
|
68
|
-
|
|
69
75
|
## [v1.4.0]
|
|
70
76
|
|
|
71
77
|
### Features
|