@bunny-agent/runner-cli 0.9.43-beta.3 → 0.9.43-beta.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/dist/bundle.mjs +2 -1
- package/package.json +4 -4
package/dist/bundle.mjs
CHANGED
|
@@ -5424,7 +5424,8 @@ function createPiRunner(options = {}) {
|
|
|
5424
5424
|
{
|
|
5425
5425
|
id: modelName,
|
|
5426
5426
|
name: modelName,
|
|
5427
|
-
reasoning: !!options.effort,
|
|
5427
|
+
reasoning: !!options.effort && options.effort !== "off",
|
|
5428
|
+
thinkingLevelMap: { off: null, xhigh: "xhigh" },
|
|
5428
5429
|
input: ["text", "image"],
|
|
5429
5430
|
cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
|
|
5430
5431
|
contextWindow: 128e3,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bunny-agent/runner-cli",
|
|
3
|
-
"version": "0.9.43-beta.
|
|
3
|
+
"version": "0.9.43-beta.4",
|
|
4
4
|
"description": "BunnyAgent Runner CLI - Like gemini-cli or claude-code, runs in your local terminal with AI SDK UI streaming",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -53,12 +53,12 @@
|
|
|
53
53
|
"esbuild": "^0.27.2",
|
|
54
54
|
"typescript": "^5.3.0",
|
|
55
55
|
"vitest": "^1.6.1",
|
|
56
|
+
"@bunny-agent/runner-harness": "0.1.1-beta.0",
|
|
56
57
|
"@bunny-agent/runner-claude": "0.6.2",
|
|
57
|
-
"@bunny-agent/runner-
|
|
58
|
+
"@bunny-agent/runner-gemini": "0.6.2",
|
|
58
59
|
"@bunny-agent/runner-pi": "0.6.4-beta.0",
|
|
59
60
|
"@bunny-agent/runner-opencode": "0.6.2",
|
|
60
|
-
"@bunny-agent/runner-
|
|
61
|
-
"@bunny-agent/runner-gemini": "0.6.2"
|
|
61
|
+
"@bunny-agent/runner-codex": "0.6.2"
|
|
62
62
|
},
|
|
63
63
|
"scripts": {
|
|
64
64
|
"build": "tsc && pnpm bundle",
|