@smythos/sre 1.5.55 → 1.5.60
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 +7 -7
- package/dist/index.js.map +1 -1
- package/dist/types/Components/ScrapflyWebScrape.class.d.ts +23 -0
- package/dist/types/Core/SmythRuntime.class.d.ts +1 -0
- package/dist/types/subsystems/MemoryManager/RuntimeContext.d.ts +3 -1
- package/dist/types/types/LLM.types.d.ts +2 -0
- package/package.json +2 -2
- package/src/Components/ScrapflyWebScrape.class.ts +24 -0
- package/src/Components/TavilyWebSearch.class.ts +6 -1
- package/src/Core/SmythRuntime.class.ts +6 -0
- package/src/helpers/Conversation.helper.ts +5 -0
- package/src/subsystems/AgentManager/AgentRuntime.class.ts +4 -6
- package/src/subsystems/LLMManager/LLM.inference.ts +3 -0
- package/src/subsystems/LLMManager/LLM.service/connectors/openai/apiInterfaces/ChatCompletionsApiInterface.ts +2 -2
- package/src/subsystems/LLMManager/ModelsProvider.service/ModelsProviderConnector.ts +3 -0
- package/src/subsystems/MemoryManager/RuntimeContext.ts +49 -45
- package/src/types/LLM.types.ts +2 -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
|
+
## [v1.5.60]
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
- Fixed memory leak in Agent context manager
|
|
13
|
+
- Optimized performances and resolved a rare case causing CPU usage spikes
|
|
14
|
+
|
|
8
15
|
## [v1.5.50]
|
|
9
16
|
|
|
10
17
|
### Features
|