@blockrun/franklin 3.27.0 → 3.27.1
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/router/index.js +10 -7
- package/package.json +1 -1
package/dist/router/index.js
CHANGED
|
@@ -575,16 +575,19 @@ export function getFallbackChain(tier, profile = 'auto') {
|
|
|
575
575
|
// models was being handed to qwen3-coder-480b — a coder model trying to
|
|
576
576
|
// do technical analysis. Reported 2026-05-03 with a markets question
|
|
577
577
|
// routed to a coder model on Sonnet failure.
|
|
578
|
+
// 2026-06-07: nvidia/glm-4.7 dropped from every chain — NVIDIA NIM hung, the
|
|
579
|
+
// gateway redirects it to qwen3-coder-480b (already present here), so routing to
|
|
580
|
+
// it just wasted a slot and mislabeled the model. qwen3-coder-480b + llama-4-
|
|
581
|
+
// maverick are both healthy and cover all categories.
|
|
578
582
|
const FREE_MODELS_BY_CATEGORY = {
|
|
579
|
-
coding: ['nvidia/qwen3-coder-480b', 'nvidia/
|
|
580
|
-
trading: ['nvidia/
|
|
581
|
-
research: ['nvidia/
|
|
582
|
-
reasoning: ['nvidia/
|
|
583
|
-
chat: ['nvidia/llama-4-maverick', 'nvidia/
|
|
584
|
-
creative: ['nvidia/llama-4-maverick', 'nvidia/
|
|
583
|
+
coding: ['nvidia/qwen3-coder-480b', 'nvidia/llama-4-maverick'],
|
|
584
|
+
trading: ['nvidia/llama-4-maverick', 'nvidia/qwen3-coder-480b'],
|
|
585
|
+
research: ['nvidia/llama-4-maverick', 'nvidia/qwen3-coder-480b'],
|
|
586
|
+
reasoning: ['nvidia/llama-4-maverick', 'nvidia/qwen3-coder-480b'],
|
|
587
|
+
chat: ['nvidia/llama-4-maverick', 'nvidia/qwen3-coder-480b'],
|
|
588
|
+
creative: ['nvidia/llama-4-maverick', 'nvidia/qwen3-coder-480b'],
|
|
585
589
|
};
|
|
586
590
|
const DEFAULT_FREE_CHAIN = [
|
|
587
|
-
'nvidia/glm-4.7',
|
|
588
591
|
'nvidia/llama-4-maverick',
|
|
589
592
|
'nvidia/qwen3-coder-480b',
|
|
590
593
|
];
|
package/package.json
CHANGED