koishi-plugin-chatluna-google-gemini-adapter 1.3.3 → 1.3.4
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/lib/index.cjs +1 -1
- package/lib/index.mjs +1 -1
- package/package.json +1 -1
package/lib/index.cjs
CHANGED
|
@@ -986,7 +986,7 @@ var GeminiClient = class extends import_client.PlatformModelAndEmbeddingsClient
|
|
|
986
986
|
"gemini-3.0-pro"
|
|
987
987
|
];
|
|
988
988
|
if (thinkingModel.some(
|
|
989
|
-
(name2) =>
|
|
989
|
+
(name2) => model.name.toLowerCase().includes(name2) && !model.name.toLowerCase().includes("image")
|
|
990
990
|
)) {
|
|
991
991
|
if (!model.name.includes("-thinking")) {
|
|
992
992
|
models.push(
|
package/lib/index.mjs
CHANGED
|
@@ -983,7 +983,7 @@ var GeminiClient = class extends PlatformModelAndEmbeddingsClient {
|
|
|
983
983
|
"gemini-3.0-pro"
|
|
984
984
|
];
|
|
985
985
|
if (thinkingModel.some(
|
|
986
|
-
(name2) =>
|
|
986
|
+
(name2) => model.name.toLowerCase().includes(name2) && !model.name.toLowerCase().includes("image")
|
|
987
987
|
)) {
|
|
988
988
|
if (!model.name.includes("-thinking")) {
|
|
989
989
|
models.push(
|
package/package.json
CHANGED