@google/gemini-cli-a2a-server 0.30.0-preview.5 → 0.30.0-preview.6
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 +5 -5
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/a2a-server.mjs
CHANGED
|
@@ -122932,7 +122932,7 @@ function resolveClassifierModel(requestedModel, modelAlias, useGemini3_1 = false
|
|
|
122932
122932
|
return resolveModel(requestedModel, useGemini3_1, useCustomToolModel);
|
|
122933
122933
|
}
|
|
122934
122934
|
function isPreviewModel(model) {
|
|
122935
|
-
return model === PREVIEW_GEMINI_MODEL || model === PREVIEW_GEMINI_3_1_MODEL || model === PREVIEW_GEMINI_FLASH_MODEL || model === PREVIEW_GEMINI_MODEL_AUTO;
|
|
122935
|
+
return model === PREVIEW_GEMINI_MODEL || model === PREVIEW_GEMINI_3_1_MODEL || model === PREVIEW_GEMINI_3_1_CUSTOM_TOOLS_MODEL || model === PREVIEW_GEMINI_FLASH_MODEL || model === PREVIEW_GEMINI_MODEL_AUTO;
|
|
122936
122936
|
}
|
|
122937
122937
|
function isGemini3Model(model) {
|
|
122938
122938
|
const resolved = resolveModel(model);
|
|
@@ -131345,7 +131345,7 @@ function getVersion() {
|
|
|
131345
131345
|
}
|
|
131346
131346
|
versionPromise = (async () => {
|
|
131347
131347
|
const pkgJson = await getPackageJson(__dirname3);
|
|
131348
|
-
return "0.30.0-preview.
|
|
131348
|
+
return "0.30.0-preview.6";
|
|
131349
131349
|
})();
|
|
131350
131350
|
return versionPromise;
|
|
131351
131351
|
}
|
|
@@ -208745,8 +208745,8 @@ var GIT_COMMIT_INFO, CLI_VERSION;
|
|
|
208745
208745
|
var init_git_commit = __esm({
|
|
208746
208746
|
"packages/core/dist/src/generated/git-commit.js"() {
|
|
208747
208747
|
"use strict";
|
|
208748
|
-
GIT_COMMIT_INFO = "
|
|
208749
|
-
CLI_VERSION = "0.30.0-preview.
|
|
208748
|
+
GIT_COMMIT_INFO = "a24009f9c";
|
|
208749
|
+
CLI_VERSION = "0.30.0-preview.6";
|
|
208750
208750
|
}
|
|
208751
208751
|
});
|
|
208752
208752
|
|
|
@@ -401717,7 +401717,7 @@ var init_config3 = __esm({
|
|
|
401717
401717
|
}
|
|
401718
401718
|
this.emitQuotaChangedEvent();
|
|
401719
401719
|
}
|
|
401720
|
-
const hasAccess = quota.buckets?.some((b) => b.modelId
|
|
401720
|
+
const hasAccess = quota.buckets?.some((b) => b.modelId && isPreviewModel(b.modelId)) ?? false;
|
|
401721
401721
|
this.setHasAccessToPreviewModel(hasAccess);
|
|
401722
401722
|
return quota;
|
|
401723
401723
|
} catch (e3) {
|