@smilintux/skcapstone 0.5.3 → 0.5.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/package.json
CHANGED
|
@@ -153,6 +153,8 @@ def _backend_from_model(model_name: str, tier: ModelTier) -> str:
|
|
|
153
153
|
return "grok"
|
|
154
154
|
if "kimi" in name_base or "moonshot" in name_base:
|
|
155
155
|
return "kimi"
|
|
156
|
+
if "minimax" in name_base:
|
|
157
|
+
return "minimax"
|
|
156
158
|
if "nvidia" in name_base:
|
|
157
159
|
return "nvidia"
|
|
158
160
|
if any(p in name_base for p in _OLLAMA_MODEL_PATTERNS):
|
|
@@ -301,6 +303,7 @@ class LLMBridge:
|
|
|
301
303
|
anthropic_callback,
|
|
302
304
|
grok_callback,
|
|
303
305
|
kimi_callback,
|
|
306
|
+
minimax_callback,
|
|
304
307
|
nvidia_callback,
|
|
305
308
|
ollama_callback,
|
|
306
309
|
openai_callback,
|