agen-vektor 0.3.26 → 0.3.27
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/config/free-tier.js +6 -3
- package/package.json +1 -1
package/dist/config/free-tier.js
CHANGED
|
@@ -66,9 +66,11 @@ exports.FREE_PROVIDER_ID = 'vectorhead-free';
|
|
|
66
66
|
* (ketemu via smoke test 0.3.22). Router Kilo terverifikasi live end-to-end
|
|
67
67
|
* (chat 200, dijawab dots-3-note-preview:free). Riwayat trap yang sama:
|
|
68
68
|
* `deepseek-ai/DeepSeek-V4-Flash` → `claude-sonnet-4-6` → `glm-5.3-flash`
|
|
69
|
-
* (dua flip 2026-09-06/07) →
|
|
69
|
+
* (dua flip 2026-09-06/07) → `kilo-auto/free` (2026-09-13) → **z-ai/glm-5.3-free**
|
|
70
|
+
* (2026-09-14: katalog gateway tinggal 2 model — `kilo-auto/free` TIDAK lagi
|
|
71
|
+
* dilayani; default baru terverifikasi live: 1 request → 200 OK, jawaban "hai").
|
|
70
72
|
*/
|
|
71
|
-
exports.FREE_DEFAULT_MODEL = '
|
|
73
|
+
exports.FREE_DEFAULT_MODEL = 'z-ai/glm-5.3-free';
|
|
72
74
|
/** The providers-map entry for the free tier (idempotent — same shape always). */
|
|
73
75
|
function freeProviderDef() {
|
|
74
76
|
// When a catalog has been fetched in this process, the gateway URL and
|
|
@@ -94,7 +96,7 @@ function freeProviderDef() {
|
|
|
94
96
|
},
|
|
95
97
|
model: exports.FREE_DEFAULT_MODEL,
|
|
96
98
|
models: Object.keys(models).length > 0 ? models : {
|
|
97
|
-
[exports.FREE_DEFAULT_MODEL]: { name: '
|
|
99
|
+
[exports.FREE_DEFAULT_MODEL]: { name: 'GLM 5.3 (free)' },
|
|
98
100
|
},
|
|
99
101
|
};
|
|
100
102
|
}
|
|
@@ -108,6 +110,7 @@ exports.FREE_LEGACY_MODELS = [
|
|
|
108
110
|
'deepseek-ai/DeepSeek-V4-Flash',
|
|
109
111
|
'claude-sonnet-4-6',
|
|
110
112
|
'glm-5.3-flash',
|
|
113
|
+
'kilo-auto/free',
|
|
111
114
|
];
|
|
112
115
|
/**
|
|
113
116
|
* Ensure the free provider entry exists in the config's providers map
|
package/package.json
CHANGED