@google/gemini-cli-a2a-server 0.13.0-preview.1 → 0.13.0-preview.3
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/a2a-server.mjs +6 -6
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/a2a-server.mjs
CHANGED
|
@@ -295897,8 +295897,8 @@ var Float64Vector = import_vector.default.Float64Vector;
|
|
|
295897
295897
|
var PointerVector = import_vector.default.PointerVector;
|
|
295898
295898
|
|
|
295899
295899
|
// packages/core/dist/src/generated/git-commit.js
|
|
295900
|
-
var GIT_COMMIT_INFO = "
|
|
295901
|
-
var CLI_VERSION = "0.13.0-preview.
|
|
295900
|
+
var GIT_COMMIT_INFO = "be36bf61";
|
|
295901
|
+
var CLI_VERSION = "0.13.0-preview.3";
|
|
295902
295902
|
|
|
295903
295903
|
// packages/core/dist/src/ide/detect-ide.js
|
|
295904
295904
|
var IDE_DEFINITIONS = {
|
|
@@ -298708,7 +298708,7 @@ async function createContentGenerator(config2, gcConfig, sessionId2) {
|
|
|
298708
298708
|
if (gcConfig.fakeResponses) {
|
|
298709
298709
|
return FakeContentGenerator.fromFile(gcConfig.fakeResponses);
|
|
298710
298710
|
}
|
|
298711
|
-
const version3 = "0.13.0-preview.
|
|
298711
|
+
const version3 = "0.13.0-preview.3";
|
|
298712
298712
|
const userAgent = `GeminiCLI/${version3} (${process.platform}; ${process.arch})`;
|
|
298713
298713
|
const baseHeaders = {
|
|
298714
298714
|
"User-Agent": userAgent
|
|
@@ -336874,7 +336874,7 @@ var ShellExecutionService = class {
|
|
|
336874
336874
|
activePty.ptyProcess.resize(cols, rows);
|
|
336875
336875
|
activePty.headlessTerminal.resize(cols, rows);
|
|
336876
336876
|
} catch (e2) {
|
|
336877
|
-
if (e2 instanceof Error && ("code" in e2 && e2.code === "ESRCH" || e2.message
|
|
336877
|
+
if (e2 instanceof Error && ("code" in e2 && e2.code === "ESRCH" || e2.message.includes("Cannot resize a pty that has already exited"))) {
|
|
336878
336878
|
} else {
|
|
336879
336879
|
throw e2;
|
|
336880
336880
|
}
|
|
@@ -354655,7 +354655,7 @@ async function getClientMetadata() {
|
|
|
354655
354655
|
if (!clientMetadataPromise) {
|
|
354656
354656
|
clientMetadataPromise = (async () => ({
|
|
354657
354657
|
ideName: "GEMINI_CLI",
|
|
354658
|
-
ideVersion: "0.13.0-preview.
|
|
354658
|
+
ideVersion: "0.13.0-preview.3",
|
|
354659
354659
|
platform: getPlatform(),
|
|
354660
354660
|
updateChannel: await getReleaseChannel(__dirname5)
|
|
354661
354661
|
}))();
|
|
@@ -357557,7 +357557,7 @@ var Config = class {
|
|
|
357557
357557
|
this.truncateToolOutputLines = params.truncateToolOutputLines ?? DEFAULT_TRUNCATE_TOOL_OUTPUT_LINES;
|
|
357558
357558
|
this.enableToolOutputTruncation = params.enableToolOutputTruncation ?? true;
|
|
357559
357559
|
this.useSmartEdit = params.useSmartEdit ?? true;
|
|
357560
|
-
this.useWriteTodos = params.useWriteTodos ??
|
|
357560
|
+
this.useWriteTodos = params.useWriteTodos ?? false;
|
|
357561
357561
|
this.initialUseModelRouter = params.useModelRouter ?? false;
|
|
357562
357562
|
this.useModelRouter = this.initialUseModelRouter;
|
|
357563
357563
|
this.disableModelRouterForAuth = params.disableModelRouterForAuth ?? [];
|