@aigne/core 1.64.0 → 1.64.1-beta
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 +14 -0
- package/lib/cjs/agents/ai-agent.js +2 -2
- package/lib/esm/agents/ai-agent.js +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.64.1-beta](https://github.com/AIGNE-io/aigne-framework/compare/core-v1.64.0...core-v1.64.1-beta) (2025-10-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **models:** improve message structure handling and enable auto-message options ([#657](https://github.com/AIGNE-io/aigne-framework/issues/657)) ([233d70c](https://github.com/AIGNE-io/aigne-framework/commit/233d70cb292b937200fada8434f33d957d766ad6))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @aigne/afs bumped to 1.1.1-beta
|
|
16
|
+
|
|
3
17
|
## [1.64.0](https://github.com/AIGNE-io/aigne-framework/compare/core-v1.64.0-beta.1...core-v1.64.0) (2025-10-22)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -147,8 +147,8 @@ class AIAgent extends agent_js_1.Agent {
|
|
|
147
147
|
typeof options.instructions === "string"
|
|
148
148
|
? prompt_builder_js_1.PromptBuilder.from(options.instructions)
|
|
149
149
|
: (options.instructions ?? new prompt_builder_js_1.PromptBuilder());
|
|
150
|
-
this.autoReorderSystemMessages = options.autoReorderSystemMessages ??
|
|
151
|
-
this.autoMergeSystemMessages = options.autoMergeSystemMessages ??
|
|
150
|
+
this.autoReorderSystemMessages = options.autoReorderSystemMessages ?? true;
|
|
151
|
+
this.autoMergeSystemMessages = options.autoMergeSystemMessages ?? true;
|
|
152
152
|
this.inputKey = options.inputKey;
|
|
153
153
|
this.inputFileKey = options.inputFileKey;
|
|
154
154
|
this.outputKey = options.outputKey || exports.DEFAULT_OUTPUT_KEY;
|
|
@@ -111,8 +111,8 @@ export class AIAgent extends Agent {
|
|
|
111
111
|
typeof options.instructions === "string"
|
|
112
112
|
? PromptBuilder.from(options.instructions)
|
|
113
113
|
: (options.instructions ?? new PromptBuilder());
|
|
114
|
-
this.autoReorderSystemMessages = options.autoReorderSystemMessages ??
|
|
115
|
-
this.autoMergeSystemMessages = options.autoMergeSystemMessages ??
|
|
114
|
+
this.autoReorderSystemMessages = options.autoReorderSystemMessages ?? true;
|
|
115
|
+
this.autoMergeSystemMessages = options.autoMergeSystemMessages ?? true;
|
|
116
116
|
this.inputKey = options.inputKey;
|
|
117
117
|
this.inputFileKey = options.inputFileKey;
|
|
118
118
|
this.outputKey = options.outputKey || DEFAULT_OUTPUT_KEY;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/core",
|
|
3
|
-
"version": "1.64.
|
|
3
|
+
"version": "1.64.1-beta",
|
|
4
4
|
"description": "The functional core of agentic AI",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -91,9 +91,9 @@
|
|
|
91
91
|
"zod": "^3.25.67",
|
|
92
92
|
"zod-from-json-schema": "^0.0.5",
|
|
93
93
|
"zod-to-json-schema": "^3.24.6",
|
|
94
|
-
"@aigne/observability-api": "^0.11.3",
|
|
95
94
|
"@aigne/platform-helpers": "^0.6.3",
|
|
96
|
-
"@aigne/
|
|
95
|
+
"@aigne/observability-api": "^0.11.3",
|
|
96
|
+
"@aigne/afs": "^1.1.1-beta"
|
|
97
97
|
},
|
|
98
98
|
"devDependencies": {
|
|
99
99
|
"@types/bun": "^1.2.22",
|