claw-subagent-service 0.0.151 → 0.0.153

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claw-subagent-service",
3
- "version": "0.0.151",
3
+ "version": "0.0.153",
4
4
  "description": "虾说智能助手",
5
5
  "main": "cli.js",
6
6
  "bin": {
@@ -168,9 +168,10 @@ async function forwardChatMessage(sessionId, content, onDelta, logFn, timeoutMs
168
168
 
169
169
  // 构建请求体,包含 system 和 model 参数
170
170
  // model 字段格式: { providerID: "provider-name", modelID: "model-id" }
171
+ // 使用 opencode/big-pickle 模型(从 TUI 模式确认)
171
172
  const requestBody = {
172
173
  system: SYSTEM_PROMPT,
173
- model: { providerID: 'kimi-coding', modelID: 'kimi-k2.6' },
174
+ model: { providerID: 'opencode', modelID: 'big-pickle' },
174
175
  parts: [{ type: 'text', text: content }]
175
176
  };
176
177