@gencode/web 0.1.14 → 0.1.16
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 +18 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @gencode/web
|
|
2
2
|
|
|
3
|
+
## 0.1.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b01942a: Improve AIMax run failures caused by provider errors wrapped in HTTP 200 streams: transient `LLMRequestError` payloads such as upstream 5xx responses are still retried automatically, while the final user-facing error now shows the provider message directly instead of the internal stream-wrapper diagnostic prefix.
|
|
8
|
+
- d747bbd: Localize AIMax `/goal` user-facing guidance and status messages for Chinese-first users while keeping the `/goal`, `/goal pause`, `/goal resume`, `/goal clear`, and `--token-budget` command syntax unchanged. The empty-goal help now includes examples that show how to write both the objective and clear completion criteria together, so goal completion is guided by verifiable conditions such as test results and bug reproduction checks.
|
|
9
|
+
- Updated dependencies [b01942a]
|
|
10
|
+
- Updated dependencies [d747bbd]
|
|
11
|
+
- @gencode/console@0.1.16
|
|
12
|
+
|
|
13
|
+
## 0.1.15
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- d5fa9a7: 智能主题切分现在会在运行日志中记录分类调用的诊断信息,包括使用的模型、LLM base URL、超时时间、候选轮次数、上下文规模、额外 prompt 长度以及失败时的错误码和降级原因,便于排查 `LLM request timed out` 等环境相关问题;密钥和完整用户消息不会写入日志。
|
|
18
|
+
- Updated dependencies [d5fa9a7]
|
|
19
|
+
- @gencode/console@0.1.15
|
|
20
|
+
|
|
3
21
|
## 0.1.14
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gencode/web",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.16",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"CHANGELOG.md"
|
|
14
14
|
],
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@gencode/console": "0.1.
|
|
16
|
+
"@gencode/console": "0.1.16",
|
|
17
17
|
"@gencode/shared": "0.2.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {},
|