companionbot 0.10.0 → 0.10.1
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/dist/ai/claude.js +2 -2
- package/package.json +1 -1
package/dist/ai/claude.js
CHANGED
|
@@ -62,13 +62,13 @@ export const MODELS = {
|
|
|
62
62
|
sonnet: {
|
|
63
63
|
id: "claude-sonnet-4-20250514",
|
|
64
64
|
name: "Claude Sonnet 4",
|
|
65
|
-
maxTokens:
|
|
65
|
+
maxTokens: 16000, // 일반 작업 (must be > thinkingBudget)
|
|
66
66
|
thinkingBudget: 10000, // 적당한 thinking
|
|
67
67
|
},
|
|
68
68
|
opus: {
|
|
69
69
|
id: "claude-opus-4-20250514",
|
|
70
70
|
name: "Claude Opus 4",
|
|
71
|
-
maxTokens:
|
|
71
|
+
maxTokens: 64000, // 복잡한 작업 (must be > thinkingBudget)
|
|
72
72
|
thinkingBudget: 32000, // 깊은 thinking
|
|
73
73
|
},
|
|
74
74
|
};
|