@google/gemini-cli-a2a-server 0.12.0-preview.7 → 0.12.0-preview.8

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.
@@ -288986,8 +288986,8 @@ var Float64Vector = import_vector.default.Float64Vector;
288986
288986
  var PointerVector = import_vector.default.PointerVector;
288987
288987
 
288988
288988
  // packages/core/dist/src/generated/git-commit.js
288989
- var GIT_COMMIT_INFO = "9fbea50e";
288990
- var CLI_VERSION = "0.12.0-preview.7";
288989
+ var GIT_COMMIT_INFO = "cc076e95";
288990
+ var CLI_VERSION = "0.12.0-preview.8";
288991
288991
 
288992
288992
  // packages/core/dist/src/ide/detect-ide.js
288993
288993
  var IDE_DEFINITIONS = {
@@ -291715,7 +291715,7 @@ async function createContentGenerator(config2, gcConfig, sessionId2) {
291715
291715
  if (gcConfig.fakeResponses) {
291716
291716
  return FakeContentGenerator.fromFile(gcConfig.fakeResponses);
291717
291717
  }
291718
- const version3 = "0.12.0-preview.7";
291718
+ const version3 = "0.12.0-preview.8";
291719
291719
  const userAgent = `GeminiCLI/${version3} (${process.platform}; ${process.arch})`;
291720
291720
  const baseHeaders = {
291721
291721
  "User-Agent": userAgent
@@ -340893,7 +340893,10 @@ var LoopDetectionService = class {
340893
340893
  * @returns true if a loop is detected, false otherwise
340894
340894
  */
340895
340895
  addAndCheck(event) {
340896
- if (this.loopDetected || this.disabledForSession) {
340896
+ if (this.disabledForSession) {
340897
+ return false;
340898
+ }
340899
+ if (this.loopDetected) {
340897
340900
  return this.loopDetected;
340898
340901
  }
340899
340902
  switch (event.type) {