claw-subagent-service 0.0.152 → 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
|
@@ -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
|
-
//
|
|
171
|
+
// 使用 opencode/big-pickle 模型(从 TUI 模式确认)
|
|
172
172
|
const requestBody = {
|
|
173
173
|
system: SYSTEM_PROMPT,
|
|
174
|
+
model: { providerID: 'opencode', modelID: 'big-pickle' },
|
|
174
175
|
parts: [{ type: 'text', text: content }]
|
|
175
176
|
};
|
|
176
177
|
|