@hiper2d/ai-agents 0.1.1 → 0.1.2
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/index.js +8 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -905,10 +905,11 @@ var SupportedAiModels = {
|
|
|
905
905
|
tags: ["expensive"]
|
|
906
906
|
},
|
|
907
907
|
[LLM_CONSTANTS.GEMINI_FLASH]: {
|
|
908
|
-
// Repointed
|
|
909
|
-
// 3.7
|
|
910
|
-
|
|
911
|
-
|
|
908
|
+
// Repointed 3.6 → 3.7 (2026-08-13) → 3.8 (2026-09-02); stable picker id, same pattern as gpt.
|
|
909
|
+
// 3.7 rejected thinkingLevel 'minimal' (low|medium|high only), unlike 3.5/3.6 — 3.8 untested
|
|
910
|
+
// on 'minimal', so keep the pin at 'medium' or above.
|
|
911
|
+
displayName: "Gemini 3.8 Flash",
|
|
912
|
+
modelApiName: "gemini-3.8-flash",
|
|
912
913
|
apiKeyName: API_KEY_CONSTANTS.GOOGLE,
|
|
913
914
|
hasThinking: true,
|
|
914
915
|
reasoningEffort: "medium",
|
|
@@ -1236,9 +1237,9 @@ var MODEL_PRICING = {
|
|
|
1236
1237
|
extendedContextThresholdTokens: 2e5
|
|
1237
1238
|
},
|
|
1238
1239
|
[SupportedAiModels[LLM_CONSTANTS.GEMINI_FLASH].modelApiName]: {
|
|
1239
|
-
//
|
|
1240
|
-
// (ai.google.dev pricing page,
|
|
1241
|
-
//
|
|
1240
|
+
// 3.8 Flash (2026-09-02) launched at the same rates as 3.7. 3.7's launch pricing was
|
|
1241
|
+
// scheduled to double to $1.50/$7.50/$0.15 on 2027-01-01 (ai.google.dev pricing page,
|
|
1242
|
+
// fetched 2026-08-13) — ACTION NEEDED then: re-check whether 3.8 follows and update.
|
|
1242
1243
|
// Cache storage cost ($0.50 / 1M tokens per hour) is not tracked here — the
|
|
1243
1244
|
// schema only models per-token call costs, not time-based storage.
|
|
1244
1245
|
inputPrice: 0.75,
|