claw-subagent-service 0.0.149 → 0.0.150
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
|
@@ -165,10 +165,10 @@ async function forwardChatMessage(sessionId, content, onDelta, logFn, timeoutMs
|
|
|
165
165
|
log('DEBUG', `请求超时: ${timeoutMs}ms`);
|
|
166
166
|
|
|
167
167
|
// 构建请求体,包含 system 和 model 参数
|
|
168
|
-
// model
|
|
168
|
+
// model 字段格式: "provider/model-id",例如 "kimi-coding/kimi-k2.6"
|
|
169
169
|
const requestBody = {
|
|
170
170
|
system: SYSTEM_PROMPT,
|
|
171
|
-
model:
|
|
171
|
+
model: 'kimi-coding/kimi-k2.6',
|
|
172
172
|
parts: [{ type: 'text', text: content }]
|
|
173
173
|
};
|
|
174
174
|
|