opencodekit 0.16.7 → 0.16.8
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/index.js
CHANGED
|
@@ -759,7 +759,7 @@ var cac = (name = "") => new CAC(name);
|
|
|
759
759
|
// package.json
|
|
760
760
|
var package_default = {
|
|
761
761
|
name: "opencodekit",
|
|
762
|
-
version: "0.16.
|
|
762
|
+
version: "0.16.8",
|
|
763
763
|
description: "CLI tool for bootstrapping and managing OpenCodeKit projects",
|
|
764
764
|
keywords: ["agents", "cli", "mcp", "opencode", "opencodekit", "template"],
|
|
765
765
|
license: "MIT",
|
|
@@ -167,11 +167,34 @@
|
|
|
167
167
|
"options": {
|
|
168
168
|
"thinking": {
|
|
169
169
|
"type": "enabled",
|
|
170
|
-
"budgetTokens":
|
|
170
|
+
"budgetTokens": 8192,
|
|
171
|
+
"reasoning_effort": "high"
|
|
171
172
|
},
|
|
172
173
|
"interleaved": {
|
|
173
174
|
"field": "reasoning_content"
|
|
174
175
|
}
|
|
176
|
+
},
|
|
177
|
+
"variants": {
|
|
178
|
+
"high": {
|
|
179
|
+
"options": {
|
|
180
|
+
"thinkingBudget": 16384,
|
|
181
|
+
"type": "enabled",
|
|
182
|
+
"reasoning_effort": "high"
|
|
183
|
+
},
|
|
184
|
+
"interleaved": {
|
|
185
|
+
"field": "reasoning_content"
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
"max": {
|
|
189
|
+
"options": {
|
|
190
|
+
"thinkingBudget": 32768,
|
|
191
|
+
"type": "enabled",
|
|
192
|
+
"reasoning_effort": "high"
|
|
193
|
+
},
|
|
194
|
+
"interleaved": {
|
|
195
|
+
"field": "reasoning_content"
|
|
196
|
+
}
|
|
197
|
+
}
|
|
175
198
|
}
|
|
176
199
|
}
|
|
177
200
|
}
|
|
@@ -355,6 +378,47 @@
|
|
|
355
378
|
"top_p": 0.95
|
|
356
379
|
},
|
|
357
380
|
"reasoning": true
|
|
381
|
+
},
|
|
382
|
+
"kimi-k2.5-free": {
|
|
383
|
+
"limit": {
|
|
384
|
+
"context": 262144,
|
|
385
|
+
"output": 32768
|
|
386
|
+
},
|
|
387
|
+
"temperature": true,
|
|
388
|
+
"reasoning": true,
|
|
389
|
+
"tool_call": true,
|
|
390
|
+
"options": {
|
|
391
|
+
"thinking": {
|
|
392
|
+
"type": "enabled",
|
|
393
|
+
"budgetTokens": 8192,
|
|
394
|
+
"reasoning_effort": "high"
|
|
395
|
+
},
|
|
396
|
+
"interleaved": {
|
|
397
|
+
"field": "reasoning_content"
|
|
398
|
+
}
|
|
399
|
+
},
|
|
400
|
+
"variants": {
|
|
401
|
+
"high": {
|
|
402
|
+
"options": {
|
|
403
|
+
"thinkingBudget": 16384,
|
|
404
|
+
"type": "enabled",
|
|
405
|
+
"reasoning_effort": "high"
|
|
406
|
+
},
|
|
407
|
+
"interleaved": {
|
|
408
|
+
"field": "reasoning_content"
|
|
409
|
+
}
|
|
410
|
+
},
|
|
411
|
+
"max": {
|
|
412
|
+
"options": {
|
|
413
|
+
"thinkingBudget": 32768,
|
|
414
|
+
"type": "enabled",
|
|
415
|
+
"reasoning_effort": "high"
|
|
416
|
+
},
|
|
417
|
+
"interleaved": {
|
|
418
|
+
"field": "reasoning_content"
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
}
|
|
358
422
|
}
|
|
359
423
|
}
|
|
360
424
|
},
|
package/package.json
CHANGED