opencrush 0.3.13 → 0.3.14
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 +26 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -41941,6 +41941,30 @@ var init_llm_direct = __esm({
|
|
|
41941
41941
|
requiresVPN: false,
|
|
41942
41942
|
isLocal: false
|
|
41943
41943
|
},
|
|
41944
|
+
{
|
|
41945
|
+
id: "minimax-global",
|
|
41946
|
+
name: "MiniMax (Hailuo Global)",
|
|
41947
|
+
emoji: "\u{1F49C}",
|
|
41948
|
+
tagline: "MiniMax global API \u2014 roleplay-optimized, English-first",
|
|
41949
|
+
taglineCN: "MiniMax \u6D77\u5916\u7248\uFF0C\u89D2\u8272\u626E\u6F14\u4F18\u5316",
|
|
41950
|
+
keyUrl: "https://intl.minimaxi.com",
|
|
41951
|
+
keyUrlCN: "https://intl.minimaxi.com",
|
|
41952
|
+
envKey: "MINIMAX_API_KEY",
|
|
41953
|
+
requiresVPN: true,
|
|
41954
|
+
isLocal: false
|
|
41955
|
+
},
|
|
41956
|
+
{
|
|
41957
|
+
id: "zai",
|
|
41958
|
+
name: "Zai (01.AI Yi)",
|
|
41959
|
+
emoji: "\u{1F9E0}",
|
|
41960
|
+
tagline: "01.AI Yi series \u2014 strong reasoning, multilingual",
|
|
41961
|
+
taglineCN: "\u96F6\u4E00\u4E07\u7269 Yi \u7CFB\u5217\uFF0C\u63A8\u7406\u5F3A\uFF0C\u591A\u8BED\u8A00",
|
|
41962
|
+
keyUrl: "https://platform.lingyiwanwu.com/apikeys",
|
|
41963
|
+
keyUrlCN: "https://platform.lingyiwanwu.com/apikeys",
|
|
41964
|
+
envKey: "ZAI_API_KEY",
|
|
41965
|
+
requiresVPN: false,
|
|
41966
|
+
isLocal: false
|
|
41967
|
+
},
|
|
41944
41968
|
// ── International ──
|
|
41945
41969
|
{
|
|
41946
41970
|
id: "anthropic",
|
|
@@ -245166,6 +245190,8 @@ async function runSetupWizard() {
|
|
|
245166
245190
|
PROVIDER_INFO.find((p2) => p2.id === "kimi"),
|
|
245167
245191
|
PROVIDER_INFO.find((p2) => p2.id === "zhipu"),
|
|
245168
245192
|
PROVIDER_INFO.find((p2) => p2.id === "minimax"),
|
|
245193
|
+
PROVIDER_INFO.find((p2) => p2.id === "minimax-global"),
|
|
245194
|
+
PROVIDER_INFO.find((p2) => p2.id === "zai"),
|
|
245169
245195
|
PROVIDER_INFO.find((p2) => p2.isLocal)
|
|
245170
245196
|
].filter(Boolean);
|
|
245171
245197
|
const { llmProvider } = await esm_default12.prompt([{
|