@google/gemini-cli-a2a-server 0.11.0-preview.0 → 0.12.0-nightly.20251023.a7faa208

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.
@@ -288503,8 +288503,8 @@ var Float64Vector = import_vector.default.Float64Vector;
288503
288503
  var PointerVector = import_vector.default.PointerVector;
288504
288504
 
288505
288505
  // packages/core/dist/src/generated/git-commit.js
288506
- var GIT_COMMIT_INFO = "0542de95";
288507
- var CLI_VERSION = "0.11.0-preview.0";
288506
+ var GIT_COMMIT_INFO = "a7faa208";
288507
+ var CLI_VERSION = "0.12.0-nightly.20251023.a7faa208";
288508
288508
 
288509
288509
  // packages/core/dist/src/ide/detect-ide.js
288510
288510
  var IDE_DEFINITIONS = {
@@ -291007,7 +291007,7 @@ function createContentGeneratorConfig(config2, authType) {
291007
291007
  return contentGeneratorConfig;
291008
291008
  }
291009
291009
  async function createContentGenerator(config2, gcConfig, sessionId2) {
291010
- const version3 = "0.11.0-preview.0";
291010
+ const version3 = "0.12.0-nightly.20251023.a7faa208";
291011
291011
  const userAgent = `GeminiCLI/${version3} (${process.platform}; ${process.arch})`;
291012
291012
  const baseHeaders = {
291013
291013
  "User-Agent": userAgent
@@ -348573,6 +348573,7 @@ var Config = class {
348573
348573
  continueOnFailedApiCall;
348574
348574
  retryFetchErrors;
348575
348575
  enableShellOutputEfficiency;
348576
+ disableYoloMode;
348576
348577
  constructor(params) {
348577
348578
  this.sessionId = params.sessionId;
348578
348579
  this.embeddingModel = params.embeddingModel ?? DEFAULT_GEMINI_EMBEDDING_MODEL;
@@ -348668,6 +348669,7 @@ var Config = class {
348668
348669
  format: params.output?.format ?? OutputFormat.TEXT
348669
348670
  };
348670
348671
  this.retryFetchErrors = params.retryFetchErrors ?? false;
348672
+ this.disableYoloMode = params.disableYoloMode ?? false;
348671
348673
  if (params.contextFileName) {
348672
348674
  setGeminiMdFilename(params.contextFileName);
348673
348675
  }
@@ -348847,6 +348849,9 @@ var Config = class {
348847
348849
  }
348848
348850
  this.approvalMode = mode;
348849
348851
  }
348852
+ isYoloModeDisabled() {
348853
+ return this.disableYoloMode || !this.isTrustedFolder();
348854
+ }
348850
348855
  getShowMemoryUsage() {
348851
348856
  return this.showMemoryUsage;
348852
348857
  }