@gencode/server 0.4.6 → 0.4.7
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 +11 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @gencode/server
|
|
2
2
|
|
|
3
|
+
## 0.4.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c5ae0fd: Agent Team runs now load only the requested `<name>.md` definition across `/aimax/agent-teams`, `<dataDir>/.aimax/agent-teams`, and the optional project `.aimax/agent-teams` directory, so an invalid unrelated team no longer blocks a valid selected team. Duplicate definitions of the requested name still fail. Invalid `description` diagnostics now identify the source file and distinguish missing, non-string YAML, and over-limit values; the 200-character limit counts Unicode characters. Quote YAML-like text such as dates, numbers, `true`, `false`, or `null` when it should remain a string.
|
|
8
|
+
- c5ae0fd: Agent runs now retry transient model failures independently for each LLM turn. A timeout or retryable gateway error that occurs after earlier tool calls can recover without replaying those completed tools, and every new turn receives a fresh retry budget. No configuration is required; the existing safeguard still stops automatic retry when the failing turn itself has already streamed assistant text or produced a tool result.
|
|
9
|
+
- Updated dependencies [c5ae0fd]
|
|
10
|
+
- Updated dependencies [c5ae0fd]
|
|
11
|
+
- @gencode/agents@0.21.3
|
|
12
|
+
- @gencode/cli@0.18.3
|
|
13
|
+
|
|
3
14
|
## 0.4.6
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gencode/server",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"aimax-server": "./dist/bin.js"
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"access": "public"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@gencode/agents": "0.21.
|
|
23
|
-
"@gencode/
|
|
24
|
-
"@gencode/
|
|
22
|
+
"@gencode/agents": "0.21.3",
|
|
23
|
+
"@gencode/cli": "0.18.3",
|
|
24
|
+
"@gencode/uni": "0.4.2"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/node": "^22.0.0",
|