@fastagent/cli 0.6.19 → 0.6.26
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/README.md +3 -3
- package/cli.js +411 -402
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -107,14 +107,14 @@ fastagent doctor --config ./fastagent.config.json
|
|
|
107
107
|
模型切换兼容性提示:
|
|
108
108
|
|
|
109
109
|
- `supportsPreviousResponse` 只控制 `openai-responses` provider 是否走 `previous_response_id` replay,不代表任意模型历史都能无损复用。
|
|
110
|
-
- 某些模型族有自己的 continuation 要求。当前已知例子是 `kimi-k2
|
|
111
|
-
- 因此,同一会话里如果从别的模型族切到 `kimi-k2
|
|
110
|
+
- 某些模型族有自己的 continuation 要求。当前已知例子是 `kimi-k2` 家族:当 thinking 开启且进入多步 tool loop 时,后续请求需要保留 assistant turn 里的 `reasoning_content`。
|
|
111
|
+
- 因此,同一会话里如果从别的模型族切到 `kimi-k2` 家族模型,而旧历史里又包含工具调用链路,可能会因为缺少 Kimi 所需 continuation 而要求新会话或 `/reset`;纯文本历史通常更容易兼容。
|
|
112
112
|
|
|
113
113
|
默认 Thinking Level:
|
|
114
114
|
|
|
115
115
|
- `engine.defaultThinkingLevel` 和 `FASTAGENT_DEFAULT_THINKING_LEVEL` 用来控制 engine 默认推理强度,合法值是 `off|minimal|low|medium|high|xhigh`
|
|
116
116
|
- CLI 会把这个值同时投影到 ACP runtime options 和 IM env snapshot
|
|
117
|
-
- 如果你准备把默认模型切到 `kimi-k2
|
|
117
|
+
- 如果你准备把默认模型切到 `kimi-k2` 家族模型,又希望尽量避开 thinking continuation 历史要求,可以把默认值设成 `off`
|
|
118
118
|
|
|
119
119
|
示例最小配置(IM 通道运行):
|
|
120
120
|
|