@smythos/sre 1.5.0 → 1.5.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 +62 -0
- package/package.json +14 -3
package/CHANGELOG
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to the SmythOS CORE Runtime Engine will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [v1.5.0] SmythOS becomes open source!
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
- Moved to a monorepo structure
|
|
13
|
+
- Implemented an SDK that provides an abstracted interface for all SmythOS components
|
|
14
|
+
- Implemented a CLI to help running agents and scaffolding SDK and SRE projects along
|
|
15
|
+
|
|
16
|
+
## [v1.4.5]
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
- New connectors : JSON Account connector, RAMVec vectordb, localStorage
|
|
21
|
+
- Conversation manager: better handling of agent chats
|
|
22
|
+
- logger becomes a connector
|
|
23
|
+
- Add support for usage reporting
|
|
24
|
+
- LLM : Refactored and simplified LLM Connector interface
|
|
25
|
+
|
|
26
|
+
## [v1.4.0]
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
- New connectors : JSON Account connector, RAMVec vectordb, localStorage
|
|
31
|
+
- Conversation manager: better handling of agent chats
|
|
32
|
+
- logger becomes a connector
|
|
33
|
+
- Add support for usage reporting
|
|
34
|
+
- LLM : new models provider connector allows loading custom models including local models
|
|
35
|
+
|
|
36
|
+
## [v1.2.0]
|
|
37
|
+
|
|
38
|
+
### Features
|
|
39
|
+
|
|
40
|
+
- New connectors : AWS Secret Manager Vault, Redis, and RAM Cache
|
|
41
|
+
- Conversation manager: better handling of agent chats
|
|
42
|
+
- All connectors inherit from SecureConnector using a common security layer
|
|
43
|
+
- LLM : support for anthropic, Groq and Gemini
|
|
44
|
+
|
|
45
|
+
## [v1.1.0]
|
|
46
|
+
|
|
47
|
+
### Features
|
|
48
|
+
|
|
49
|
+
- New connectors : S3, Pinecone, and local vault
|
|
50
|
+
- LLM : implemented common LLM interface to support more providers
|
|
51
|
+
|
|
52
|
+
## [v1.0.0]
|
|
53
|
+
|
|
54
|
+
### Features
|
|
55
|
+
|
|
56
|
+
- Initial release
|
|
57
|
+
- LLM : support for openai API
|
|
58
|
+
- Smyth Runtime Core
|
|
59
|
+
- Connectors Serivece
|
|
60
|
+
- Subsystems architecture
|
|
61
|
+
- Security & ACL helpers
|
|
62
|
+
- Implemented services : AgentData, Storage, Account, VectorDB
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smythos/sre",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "Smyth Runtime Environment",
|
|
5
5
|
"author": "Alaa-eddine KADDOURI",
|
|
6
6
|
"license": "MIT",
|
|
@@ -13,7 +13,9 @@
|
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
15
|
"files": [
|
|
16
|
-
"dist"
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md",
|
|
18
|
+
"CHANGELOG"
|
|
17
19
|
],
|
|
18
20
|
"type": "module",
|
|
19
21
|
"scripts": {
|
|
@@ -113,5 +115,14 @@
|
|
|
113
115
|
"winston-transport": "^4.7.0",
|
|
114
116
|
"xxhashjs": "^0.2.2",
|
|
115
117
|
"zip-lib": "^1.0.5"
|
|
116
|
-
}
|
|
118
|
+
},
|
|
119
|
+
"repository": {
|
|
120
|
+
"type": "git",
|
|
121
|
+
"url": "https://github.com/smythos/sre.git",
|
|
122
|
+
"directory": "packages/core"
|
|
123
|
+
},
|
|
124
|
+
"bugs": {
|
|
125
|
+
"url": "https://github.com/smythos/sre/issues"
|
|
126
|
+
},
|
|
127
|
+
"homepage": "https://github.com/smythos/sre/tree/main/packages/core#readme"
|
|
117
128
|
}
|