cciwon-code-review-cli 2.0.3 → 2.0.4

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/lib/api-client.js CHANGED
@@ -6,7 +6,7 @@ class CodeReviewClient {
6
6
  this.serverUrl = serverUrl;
7
7
  this.client = axios.create({
8
8
  baseURL: serverUrl,
9
- timeout: 120000, // 2분 타임아웃 (추론 시간 고려)
9
+ timeout: 300000, // 5분 타임아웃 (모델 추론 시간 고려)
10
10
  headers: {
11
11
  'Content-Type': 'application/json'
12
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cciwon-code-review-cli",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "AI-powered code review CLI tool using Qwen3-Coder-30B model with IP whitelist support",
5
5
  "main": "lib/api-client.js",
6
6
  "bin": {