job51-gitlab-cr-node-jt-1 1.6.0 → 1.6.2

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.
@@ -3,7 +3,7 @@
3
3
  "ANTHROPIC_AUTH_TOKEN": "sk-436f005eeece4cf7b339bd18162c8a76",
4
4
  "ANTHROPIC_BASE_URL": "https://dashscope.aliyuncs.com/apps/anthropic",
5
5
  "API_TIMEOUT_MS": "3000000",
6
- "ANTHROPIC_MODEL": "qwen3-coder-plus",
7
- "ANTHROPIC_SMALL_FAST_MODEL":"qwen3-coder-plus"
6
+ "ANTHROPIC_MODEL": "qwen3.5-plus",
7
+ "ANTHROPIC_SMALL_FAST_MODEL":"qwen3.5-plus"
8
8
  }
9
9
  }
package/index.js CHANGED
@@ -198,6 +198,8 @@ class GitLabCodeReviewer {
198
198
 
199
199
  const prompt = '@simple-code-review ' + `${filePath}`;
200
200
 
201
+ //打印
202
+ debugLog(`Claude命令: ${prompt}`);
201
203
  // 最多重试5次,直到结果包含"🤖 AI代码审查结果"或达到最大重试次数
202
204
  let attempts = 0;
203
205
  const maxAttempts = 5;