@google/gemini-cli-a2a-server 0.10.0-preview.0 → 0.10.0-preview.1

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.
@@ -288403,8 +288403,8 @@ var Float64Vector = import_vector.default.Float64Vector;
288403
288403
  var PointerVector = import_vector.default.PointerVector;
288404
288404
 
288405
288405
  // packages/core/dist/src/generated/git-commit.js
288406
- var GIT_COMMIT_INFO = "0dea3544";
288407
- var CLI_VERSION = "0.10.0-preview.0";
288406
+ var GIT_COMMIT_INFO = "a6311e3c";
288407
+ var CLI_VERSION = "0.10.0-preview.1";
288408
288408
 
288409
288409
  // packages/core/dist/src/ide/detect-ide.js
288410
288410
  var IDE_DEFINITIONS = {
@@ -290867,7 +290867,7 @@ function createContentGeneratorConfig(config2, authType) {
290867
290867
  return contentGeneratorConfig;
290868
290868
  }
290869
290869
  async function createContentGenerator(config2, gcConfig, sessionId2) {
290870
- const version3 = "0.10.0-preview.0";
290870
+ const version3 = "0.10.0-preview.1";
290871
290871
  const userAgent = `GeminiCLI/${version3} (${process.platform}; ${process.arch})`;
290872
290872
  const baseHeaders = {
290873
290873
  "User-Agent": userAgent
@@ -344165,7 +344165,13 @@ var Config = class {
344165
344165
  this.useWriteTodos = params.useWriteTodos ?? false;
344166
344166
  this.useModelRouter = params.useModelRouter ?? false;
344167
344167
  this.enableMessageBusIntegration = params.enableMessageBusIntegration ?? false;
344168
- this.codebaseInvestigatorSettings = params.codebaseInvestigatorSettings;
344168
+ this.codebaseInvestigatorSettings = {
344169
+ enabled: params.codebaseInvestigatorSettings?.enabled ?? true,
344170
+ maxNumTurns: params.codebaseInvestigatorSettings?.maxNumTurns ?? 15,
344171
+ maxTimeMinutes: params.codebaseInvestigatorSettings?.maxTimeMinutes ?? 5,
344172
+ thinkingBudget: params.codebaseInvestigatorSettings?.thinkingBudget ?? DEFAULT_THINKING_MODE,
344173
+ model: params.codebaseInvestigatorSettings?.model ?? DEFAULT_GEMINI_MODEL
344174
+ };
344169
344175
  this.continueOnFailedApiCall = params.continueOnFailedApiCall ?? true;
344170
344176
  this.enableShellOutputEfficiency = params.enableShellOutputEfficiency ?? true;
344171
344177
  this.extensionManagement = params.extensionManagement ?? true;
@@ -344653,7 +344659,7 @@ var Config = class {
344653
344659
  if (this.getUseWriteTodos()) {
344654
344660
  registerCoreTool(WriteTodosTool, this);
344655
344661
  }
344656
- if (this.getCodebaseInvestigatorSettings()?.enabled) {
344662
+ if (this.getCodebaseInvestigatorSettings().enabled) {
344657
344663
  const definition = this.agentRegistry.getDefinition("codebase_investigator");
344658
344664
  if (definition) {
344659
344665
  const excludeTools = this.getExcludeTools() || [];