@getpochi/cli 0.5.54 → 0.5.55
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/cli.js +14 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -360080,7 +360080,15 @@ function createGeminiCliModel({
|
|
|
360080
360080
|
async transformParams({ params }) {
|
|
360081
360081
|
return {
|
|
360082
360082
|
...params,
|
|
360083
|
-
maxOutputTokens: 32768
|
|
360083
|
+
maxOutputTokens: 32768,
|
|
360084
|
+
providerOptions: {
|
|
360085
|
+
google: {
|
|
360086
|
+
thinkingConfig: {
|
|
360087
|
+
includeThoughts: true,
|
|
360088
|
+
thinkingBudget: 4096
|
|
360089
|
+
}
|
|
360090
|
+
}
|
|
360091
|
+
}
|
|
360084
360092
|
};
|
|
360085
360093
|
}
|
|
360086
360094
|
}
|
|
@@ -368449,7 +368457,7 @@ var {
|
|
|
368449
368457
|
// package.json
|
|
368450
368458
|
var package_default = {
|
|
368451
368459
|
name: "@getpochi/cli",
|
|
368452
|
-
version: "0.5.
|
|
368460
|
+
version: "0.5.55",
|
|
368453
368461
|
type: "module",
|
|
368454
368462
|
bin: {
|
|
368455
368463
|
pochi: "src/cli.ts"
|
|
@@ -412421,7 +412429,10 @@ var program5 = new Command().name("pochi").description(`${source_default.bold("P
|
|
|
412421
412429
|
customAgents,
|
|
412422
412430
|
mcpHub
|
|
412423
412431
|
});
|
|
412424
|
-
const renderer =
|
|
412432
|
+
const renderer = new OutputRenderer(runner.state);
|
|
412433
|
+
if (options6.streamJson) {
|
|
412434
|
+
new JsonRenderer(runner.state);
|
|
412435
|
+
}
|
|
412425
412436
|
await runner.run();
|
|
412426
412437
|
renderer.shutdown();
|
|
412427
412438
|
mcpHub.dispose();
|