@gencode/web 0.6.7 → 0.6.8

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @gencode/web
2
2
 
3
+ ## 0.6.8
4
+
5
+ ### Patch Changes
6
+
7
+ - aae9c3f: Make resumed `before_tool_call` approvals continue through a normal Agent response across agents, CLI, plugin integrations, console, and web consumers.
8
+
9
+ - Approved calls now execute the exact checkpoint tool call once, then the model receives the persisted tool result and produces the final response.
10
+ - Denied, cancelled, or timed-out calls are skipped and still return a model-generated explanation.
11
+ - Existing resume input, callback, and websocket envelope formats are unchanged; approved streams include tool execution events before the final text.
12
+
13
+ - 1dadb7f: `aimax run` 现在支持按单次任务配置模型采样参数:`--temperature`、`--top-k`、`--top-p`,也可以通过 `AIMAX_TEMPERATURE`、`AIMAX_TOP_K`、`AIMAX_TOP_P` 设置默认值。`aimax-server` 的 `POST /run` 同步支持在 `run.temperature`、`run.topK`、`run.topP` 中传入这些值;未配置时不会向模型请求额外注入采样字段。
14
+ - 18c5760: 运行日志现在会记录模型首次返回响应的时间点,以及每个插件 hook handler 执行前、执行完成或失败的状态。通过 CLI 运行时,这些日志会继续写入本次消息对应的 `.aimax/<session-store>/<session-id>/logs/<message-id>/app.log`,便于排查模型首包延迟和插件 hook 耗时。
15
+ - Updated dependencies [aae9c3f]
16
+ - Updated dependencies [1dadb7f]
17
+ - Updated dependencies [18c5760]
18
+ - Updated dependencies [2c7e63a]
19
+ - @gencode/console@0.6.8
20
+ - @gencode/shared@0.6.2
21
+
3
22
  ## 0.6.7
4
23
 
5
24
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gencode/web",
3
- "version": "0.6.7",
3
+ "version": "0.6.8",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -13,8 +13,8 @@
13
13
  "CHANGELOG.md"
14
14
  ],
15
15
  "dependencies": {
16
- "@gencode/console": "0.6.7",
17
- "@gencode/shared": "0.6.1"
16
+ "@gencode/console": "0.6.8",
17
+ "@gencode/shared": "0.6.2"
18
18
  },
19
19
  "devDependencies": {},
20
20
  "scripts": {