fluxflow-cli 3.4.5 → 3.4.6
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/fluxflow.js +37 -22
- package/model_config.json +31 -12
- package/package.json +2 -2
package/dist/fluxflow.js
CHANGED
|
@@ -5019,7 +5019,7 @@ var init_StatusBar = __esm({
|
|
|
5019
5019
|
}
|
|
5020
5020
|
return "#ff0000";
|
|
5021
5021
|
};
|
|
5022
|
-
StatusBar = React5.memo(({ mode, thinkingLevel, tokens = "0.0k", tokensTotal = "0.0k", chatId = "NEW-SESSION", isMemoryEnabled = true, apiTier = "Free", aiProvider = "Google", activeModel = "", isProcessing = false, lastChunkTime = 0 }) => {
|
|
5022
|
+
StatusBar = React5.memo(({ mode, thinkingLevel, tokens = "0.0k", tokensTotal = "0.0k", chatId = "NEW-SESSION", isMemoryEnabled = true, apiTier = "Free", aiProvider = "Google", activeModel: activeModel2 = "", isProcessing = false, lastChunkTime = 0 }) => {
|
|
5023
5023
|
const modeIcon = mode === "Flux" ? "" : "";
|
|
5024
5024
|
const [memoryUsage, setMemoryUsage] = useState5(0);
|
|
5025
5025
|
const [memoryLimit, setMemoryLimit] = useState5(0);
|
|
@@ -5094,9 +5094,9 @@ var init_StatusBar = __esm({
|
|
|
5094
5094
|
};
|
|
5095
5095
|
}, []);
|
|
5096
5096
|
let maxLimit = 262144;
|
|
5097
|
-
if (aiProvider === "NVIDIA" && (
|
|
5097
|
+
if (aiProvider === "NVIDIA" && (activeModel2?.includes("glm") || activeModel2?.includes("gpt") || activeModel2?.includes("qwen"))) {
|
|
5098
5098
|
maxLimit = 128e3;
|
|
5099
|
-
} else if (aiProvider === "DeepSeek" || aiProvider === "Google" && apiTier === "Paid" || aiProvider === "NVIDIA" &&
|
|
5099
|
+
} else if (aiProvider === "DeepSeek" || aiProvider === "Google" && apiTier === "Paid" || aiProvider === "NVIDIA" && (activeModel2.includes("deepseek") || activeModel2.includes("seed"))) {
|
|
5100
5100
|
maxLimit = 409600;
|
|
5101
5101
|
}
|
|
5102
5102
|
return /* @__PURE__ */ React5.createElement(
|
|
@@ -11255,6 +11255,7 @@ var init_ai = __esm({
|
|
|
11255
11255
|
const isQwen = model.includes("qwen");
|
|
11256
11256
|
const isNemotron = model.includes("nemotron");
|
|
11257
11257
|
const isLlama3 = model.includes("llama-3");
|
|
11258
|
+
const isBytedance = model.includes("seed");
|
|
11258
11259
|
const GPT_THINKING_LEVELS = {
|
|
11259
11260
|
"Fast": "low",
|
|
11260
11261
|
"Low": "low",
|
|
@@ -11263,6 +11264,14 @@ var init_ai = __esm({
|
|
|
11263
11264
|
"High": "high",
|
|
11264
11265
|
"xHigh": "high"
|
|
11265
11266
|
};
|
|
11267
|
+
const BYTEDANCE_THINKING_LEVELS = {
|
|
11268
|
+
"Fast": "64",
|
|
11269
|
+
"Low": "64",
|
|
11270
|
+
"Medium": "4096",
|
|
11271
|
+
"Standard": "4096",
|
|
11272
|
+
"High": "16384",
|
|
11273
|
+
"xHigh": "16384"
|
|
11274
|
+
};
|
|
11266
11275
|
const maxTokens = isMinimax || isDeepSeek ? 16384 : 32768;
|
|
11267
11276
|
const body = {
|
|
11268
11277
|
model,
|
|
@@ -11303,6 +11312,12 @@ var init_ai = __esm({
|
|
|
11303
11312
|
} else {
|
|
11304
11313
|
body.chat_template_kwargs = { enable_thinking: false };
|
|
11305
11314
|
}
|
|
11315
|
+
} else if (isBytedance) {
|
|
11316
|
+
if (isThinking) {
|
|
11317
|
+
body.extra_body = {
|
|
11318
|
+
thinking_budget: parseInt(BYTEDANCE_THINKING_LEVELS[apiLevel] ?? "4096")
|
|
11319
|
+
};
|
|
11320
|
+
}
|
|
11306
11321
|
}
|
|
11307
11322
|
let attempts = 0;
|
|
11308
11323
|
const maxAttempts = 6;
|
|
@@ -12498,7 +12513,7 @@ Provide a consolidated summary of the entire session.`;
|
|
|
12498
12513
|
let targetModel = getFallbackValue("gemma_janitor_fallback_google");
|
|
12499
12514
|
if (aiProvider === "OpenRouter") targetModel = getFallbackValue("janitor_open_router");
|
|
12500
12515
|
if (aiProvider === "DeepSeek") targetModel = getFallbackValue("deepseek_level_1");
|
|
12501
|
-
if (aiProvider === "NVIDIA") targetModel = getFallbackValue("
|
|
12516
|
+
if (aiProvider === "NVIDIA") targetModel = getFallbackValue("nvidia_chat_summarizer_fallback");
|
|
12502
12517
|
let attempts = 0;
|
|
12503
12518
|
let success = false;
|
|
12504
12519
|
let response = null;
|
|
@@ -12623,9 +12638,9 @@ Provide a consolidated summary of the entire session.`;
|
|
|
12623
12638
|
if (aiProvider === "NVIDIA" && (modelName?.includes("glm") || modelName?.includes("gpt") || modelName?.includes("qwen"))) {
|
|
12624
12639
|
contextCompressionCount = 122e3;
|
|
12625
12640
|
contextTruncationCount = 126e3;
|
|
12626
|
-
} else if (aiProvider === "DeepSeek" || aiProvider === "Google" && apiTier === "Paid") {
|
|
12627
|
-
contextCompressionCount =
|
|
12628
|
-
contextTruncationCount =
|
|
12641
|
+
} else if (aiProvider === "DeepSeek" || aiProvider === "Google" && apiTier === "Paid" || aiProvider === "NVIDIA" && (activeModel.includes("deepseek") || activeModel.includes("seed"))) {
|
|
12642
|
+
contextCompressionCount = 403e3;
|
|
12643
|
+
contextTruncationCount = 408e3;
|
|
12629
12644
|
}
|
|
12630
12645
|
if ((sessionStats?.tokens || 0) > contextCompressionCount) {
|
|
12631
12646
|
yield { type: "status_history", content: "Context Limit Reached. Condensing session history..." };
|
|
@@ -16696,7 +16711,7 @@ function App({ args = [] }) {
|
|
|
16696
16711
|
const [setupStep, setSetupStep] = useState15(0);
|
|
16697
16712
|
const [latestVer, setLatestVer] = useState15(null);
|
|
16698
16713
|
const [showFullThinking, setShowFullThinking] = useState15(false);
|
|
16699
|
-
const [
|
|
16714
|
+
const [activeModel2, setActiveModel] = useState15(getDefaultModel("Google", "Free") || "gemma-4-31b-it");
|
|
16700
16715
|
const [janitorModel, setJanitorModel] = useState15(getFallbackValue("gemma_janitor_fallback_google") || "gemma-4-26b-a4b-it");
|
|
16701
16716
|
const [isInitializing, setIsInitializing] = useState15(true);
|
|
16702
16717
|
const [isAppFocused, setIsAppFocused] = useState15(true);
|
|
@@ -16827,12 +16842,12 @@ function App({ args = [] }) {
|
|
|
16827
16842
|
setThinkingLevel(hasStandard ? "Standard" : "Medium");
|
|
16828
16843
|
} else {
|
|
16829
16844
|
if (aiProvider === "Google" && thinkingLevel === "xHigh") {
|
|
16830
|
-
if (
|
|
16845
|
+
if (activeModel2 && activeModel2.toLowerCase().startsWith("gemini-3")) {
|
|
16831
16846
|
setThinkingLevel("High");
|
|
16832
16847
|
}
|
|
16833
16848
|
}
|
|
16834
16849
|
}
|
|
16835
|
-
}, [aiProvider,
|
|
16850
|
+
}, [aiProvider, activeModel2, thinkingLevel]);
|
|
16836
16851
|
useEffect12(() => {
|
|
16837
16852
|
if (!apiKey) return;
|
|
16838
16853
|
if (isFirstRender.current) {
|
|
@@ -17633,7 +17648,7 @@ function App({ args = [] }) {
|
|
|
17633
17648
|
}, [confirmExit]);
|
|
17634
17649
|
useEffect12(() => {
|
|
17635
17650
|
if (!isInitializing) {
|
|
17636
|
-
const modelToSave = parsedArgs.model &&
|
|
17651
|
+
const modelToSave = parsedArgs.model && activeModel2 === parsedArgs.model ? persistedModelRef.current : activeModel2;
|
|
17637
17652
|
let settingsToSave = systemSettings;
|
|
17638
17653
|
if (parsedArgs.playground) {
|
|
17639
17654
|
settingsToSave = {
|
|
@@ -17646,7 +17661,7 @@ function App({ args = [] }) {
|
|
|
17646
17661
|
mode,
|
|
17647
17662
|
thinkingLevel,
|
|
17648
17663
|
aiProvider,
|
|
17649
|
-
activeModel: modelToSave ||
|
|
17664
|
+
activeModel: modelToSave || activeModel2,
|
|
17650
17665
|
showFullThinking,
|
|
17651
17666
|
systemSettings: settingsToSave,
|
|
17652
17667
|
profileData,
|
|
@@ -17654,7 +17669,7 @@ function App({ args = [] }) {
|
|
|
17654
17669
|
apiTier
|
|
17655
17670
|
});
|
|
17656
17671
|
}
|
|
17657
|
-
}, [mode, thinkingLevel, aiProvider,
|
|
17672
|
+
}, [mode, thinkingLevel, aiProvider, activeModel2, showFullThinking, systemSettings, profileData, imageSettings, isInitializing, parsedArgs, apiTier]);
|
|
17658
17673
|
const handleSetup = async (val) => {
|
|
17659
17674
|
const key = val.trim();
|
|
17660
17675
|
let minLength = 38;
|
|
@@ -17742,7 +17757,7 @@ function App({ args = [] }) {
|
|
|
17742
17757
|
{ cmd: "Medium", desc: "Balanced Reasoning" },
|
|
17743
17758
|
{ cmd: "High", desc: "Deep Reasoning" },
|
|
17744
17759
|
{ cmd: "xHigh", desc: "Extended Reasoning" }
|
|
17745
|
-
] :
|
|
17760
|
+
] : activeModel2 && activeModel2.toLowerCase().startsWith("gemini-3") ? [
|
|
17746
17761
|
{ cmd: "Fast", desc: "Fastest" },
|
|
17747
17762
|
{ cmd: "Low", desc: "Quick Reasoning" },
|
|
17748
17763
|
{ cmd: "Medium", desc: "Balanced Reasoning" },
|
|
@@ -18603,7 +18618,7 @@ ${list || "No saved chats found."}`, isMeta: true }];
|
|
|
18603
18618
|
const s2 = emojiSpace(2);
|
|
18604
18619
|
setMessages((prev) => {
|
|
18605
18620
|
setCompletedIndex(prev.length + 1);
|
|
18606
|
-
return [...prev, { id: Date.now(), role: "system", text: `[SYSTEM]
|
|
18621
|
+
return [...prev, { id: Date.now(), role: "system", text: `[SYSTEM] Compacting session history...`, isMeta: true }];
|
|
18607
18622
|
});
|
|
18608
18623
|
try {
|
|
18609
18624
|
const config = {
|
|
@@ -18623,7 +18638,7 @@ ${list || "No saved chats found."}`, isMeta: true }];
|
|
|
18623
18638
|
const finalMsgs = [...prev, {
|
|
18624
18639
|
id: Date.now(),
|
|
18625
18640
|
role: "system",
|
|
18626
|
-
text: `[SYSTEM] Chat History
|
|
18641
|
+
text: `[SYSTEM] Chat History compacted saving tokens.`,
|
|
18627
18642
|
isMeta: true
|
|
18628
18643
|
}];
|
|
18629
18644
|
setCompletedIndex(finalMsgs.length);
|
|
@@ -18632,13 +18647,13 @@ ${list || "No saved chats found."}`, isMeta: true }];
|
|
|
18632
18647
|
} else {
|
|
18633
18648
|
setMessages((prev) => {
|
|
18634
18649
|
setCompletedIndex(prev.length + 1);
|
|
18635
|
-
return [...prev, { id: Date.now(), role: "system", text: "[SYSTEM]
|
|
18650
|
+
return [...prev, { id: Date.now(), role: "system", text: "[SYSTEM] Compaction failed.", isMeta: true }];
|
|
18636
18651
|
});
|
|
18637
18652
|
}
|
|
18638
18653
|
} catch (err) {
|
|
18639
18654
|
setMessages((prev) => {
|
|
18640
18655
|
setCompletedIndex(prev.length + 1);
|
|
18641
|
-
return [...prev, { id: Date.now(), role: "system", text: `[SYSTEM] Error during
|
|
18656
|
+
return [...prev, { id: Date.now(), role: "system", text: `[SYSTEM] Error during compaction: ${err.message}`, isMeta: true }];
|
|
18642
18657
|
});
|
|
18643
18658
|
} finally {
|
|
18644
18659
|
setIsCompressing(false);
|
|
@@ -18790,7 +18805,7 @@ ${timestamp}` };
|
|
|
18790
18805
|
}
|
|
18791
18806
|
}
|
|
18792
18807
|
const stream = getAIStream(
|
|
18793
|
-
|
|
18808
|
+
activeModel2,
|
|
18794
18809
|
cleanHistoryForAI,
|
|
18795
18810
|
{
|
|
18796
18811
|
profile: profileData,
|
|
@@ -20433,7 +20448,7 @@ Selection: ${val}`,
|
|
|
20433
20448
|
glintWidth: 2,
|
|
20434
20449
|
typeSpeed: 10
|
|
20435
20450
|
}
|
|
20436
|
-
), /* @__PURE__ */ React16.createElement(Text16, { color: "gray" }, activeTime > 0 ? `(${activeTime.toFixed(0)}s)` : "")) : /* @__PURE__ */ React16.createElement(Text16, { color: "grey", italic: true }, input.length > 0 && escPressCount ? "Press ESC again to clear input" : hasPasteBlock ? "Press CTRL + O to expand" : "Waiting for input...")), /* @__PURE__ */ React16.createElement(Box14, null, isProcessing && Date.now() - lastChunkTime > 15e3 && !activeSubagents.some((sa) => sa.status === "running" && !statusText.toLowerCase().includes("waiting")) ? /* @__PURE__ */ React16.createElement(Box14, null, /* @__PURE__ */ React16.createElement(GlintText_default, { text: "Waiting for API", baseColor: "white", glintColor: "gray", glintWidth: 4, speed: 80 }), /* @__PURE__ */ React16.createElement(Text16, { color: "gray", dimColor: true }, " \u2503 ")) : wittyPhrase ? /* @__PURE__ */ React16.createElement(Box14, null, /* @__PURE__ */ React16.createElement(GlintText_default, { text: wittyPhrase, italic: true, speed: 80, typeSpeed: 15 }), /* @__PURE__ */ React16.createElement(Text16, { color: "gray", dimColor: true }, " \u2503 ")) : null, /* @__PURE__ */ React16.createElement(GlintText_default, { text: tempModelOverride ||
|
|
20451
|
+
), /* @__PURE__ */ React16.createElement(Text16, { color: "gray" }, activeTime > 0 ? `(${activeTime.toFixed(0)}s)` : "")) : /* @__PURE__ */ React16.createElement(Text16, { color: "grey", italic: true }, input.length > 0 && escPressCount ? "Press ESC again to clear input" : hasPasteBlock ? "Press CTRL + O to expand" : "Waiting for input...")), /* @__PURE__ */ React16.createElement(Box14, null, isProcessing && Date.now() - lastChunkTime > 15e3 && !activeSubagents.some((sa) => sa.status === "running" && !statusText.toLowerCase().includes("waiting")) ? /* @__PURE__ */ React16.createElement(Box14, null, /* @__PURE__ */ React16.createElement(GlintText_default, { text: "Waiting for API", baseColor: "white", glintColor: "gray", glintWidth: 4, speed: 80 }), /* @__PURE__ */ React16.createElement(Text16, { color: "gray", dimColor: true }, " \u2503 ")) : wittyPhrase ? /* @__PURE__ */ React16.createElement(Box14, null, /* @__PURE__ */ React16.createElement(GlintText_default, { text: wittyPhrase, italic: true, speed: 80, typeSpeed: 15 }), /* @__PURE__ */ React16.createElement(Text16, { color: "gray", dimColor: true }, " \u2503 ")) : null, /* @__PURE__ */ React16.createElement(GlintText_default, { text: tempModelOverride || activeModel2.split("/")[1] || activeModel2, baseColor: "white", glintColor: "gray", glintWidth: 3 }))), /* @__PURE__ */ React16.createElement(Box14, { flexDirection: "column", width: "100%" }, /* @__PURE__ */ React16.createElement(Box14, { width: "100%", height: 1, overflow: "hidden" }, /* @__PURE__ */ React16.createElement(Text16, { color: "#555555" }, "\u2584".repeat(Math.max(1, terminalSize.columns)))), /* @__PURE__ */ React16.createElement(
|
|
20437
20452
|
Box14,
|
|
20438
20453
|
{
|
|
20439
20454
|
backgroundColor: "#555555",
|
|
@@ -20442,7 +20457,7 @@ Selection: ${val}`,
|
|
|
20442
20457
|
width: "100%",
|
|
20443
20458
|
flexDirection: "column"
|
|
20444
20459
|
},
|
|
20445
|
-
/* @__PURE__ */ React16.createElement(Box14, { flexDirection: "column", width: "100%" }, /* @__PURE__ */ React16.createElement(Box14, { flexDirection: "row", width: "100%", paddingY: 0 }, /* @__PURE__ */ React16.createElement(Box14, { flexShrink: 0, width: 4 }, /* @__PURE__ */ React16.createElement(Text16, { color: "white", bold: true }, isProcessing || isCompressing ? "\u2726 " : " \u276F ")), /* @__PURE__ */ React16.createElement(Box14, { flexGrow: 1 }, /* @__PURE__ */ React16.createElement(Box14, { flexGrow: 1, position: "relative" }, input === "" && /* @__PURE__ */ React16.createElement(Box14, { position: "absolute", paddingLeft: 0 }, activeCommand && !isTerminalFocused ? /* @__PURE__ */ React16.createElement(Text16, { color: "yellow" }, isTerminalWaitingForInput ? " Terminal is waiting for user input. Press TAB to interact" : " Press TAB to interact with terminal...") : activeCommand && isTerminalFocused ? /* @__PURE__ */ React16.createElement(Text16, { color: "yellow", bold: true }, " [ TERMINAL FOCUSED ] Type to interact, press TAB to exit...") : escPressCount === 1 ? /* @__PURE__ */ React16.createElement(Text16, { color: "white", bold: true }, " Press ESC again to ", input.length > 0 ? "clear input" : "revert codebase to checkpoint", "...") : /* @__PURE__ */ React16.createElement(Text16, { color: "#cccccc" }, escPressed ? " Press ESC again to cancel the request." : isCompressing ? "
|
|
20460
|
+
/* @__PURE__ */ React16.createElement(Box14, { flexDirection: "column", width: "100%" }, /* @__PURE__ */ React16.createElement(Box14, { flexDirection: "row", width: "100%", paddingY: 0 }, /* @__PURE__ */ React16.createElement(Box14, { flexShrink: 0, width: 4 }, /* @__PURE__ */ React16.createElement(Text16, { color: "white", bold: true }, isProcessing || isCompressing ? "\u2726 " : " \u276F ")), /* @__PURE__ */ React16.createElement(Box14, { flexGrow: 1 }, /* @__PURE__ */ React16.createElement(Box14, { flexGrow: 1, position: "relative" }, input === "" && /* @__PURE__ */ React16.createElement(Box14, { position: "absolute", paddingLeft: 0 }, activeCommand && !isTerminalFocused ? /* @__PURE__ */ React16.createElement(Text16, { color: "yellow" }, isTerminalWaitingForInput ? " Terminal is waiting for user input. Press TAB to interact" : " Press TAB to interact with terminal...") : activeCommand && isTerminalFocused ? /* @__PURE__ */ React16.createElement(Text16, { color: "yellow", bold: true }, " [ TERMINAL FOCUSED ] Type to interact, press TAB to exit...") : escPressCount === 1 ? /* @__PURE__ */ React16.createElement(Text16, { color: "white", bold: true }, " Press ESC again to ", input.length > 0 ? "clear input" : "revert codebase to checkpoint", "...") : /* @__PURE__ */ React16.createElement(Text16, { color: "#cccccc" }, escPressed ? " Press ESC again to cancel the request." : isCompressing ? " Compacting session history, please wait..." : !isProcessing ? ` Send message, @file or /cmd ... (${terminalEnv.shortcut} for newline)` : " Enter a prompt to steer the agent.")), /* @__PURE__ */ React16.createElement(
|
|
20446
20461
|
MultilineInput,
|
|
20447
20462
|
{
|
|
20448
20463
|
key: `input-${inputKey}`,
|
|
@@ -20600,7 +20615,7 @@ Selection: ${val}`,
|
|
|
20600
20615
|
isMemoryEnabled: systemSettings.memory,
|
|
20601
20616
|
apiTier,
|
|
20602
20617
|
aiProvider,
|
|
20603
|
-
activeModel,
|
|
20618
|
+
activeModel: activeModel2,
|
|
20604
20619
|
isProcessing,
|
|
20605
20620
|
lastChunkTime
|
|
20606
20621
|
}
|
package/model_config.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version":
|
|
3
|
-
"release":
|
|
2
|
+
"version": 0,
|
|
3
|
+
"release": 20260714,
|
|
4
4
|
"fallbacks": {
|
|
5
5
|
"janitor_default": "gemini-3.1-flash-lite",
|
|
6
6
|
"janitor_attempts_fallback": "gemma-4-26b-a4b-it",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"deepseek_level_1": "deepseek-v4-flash",
|
|
11
11
|
"deepseek_level_2": "deepseek-v4-pro",
|
|
12
12
|
"nvidia_janitor_fallback": "mistralai/mistral-nemotron",
|
|
13
|
+
"nvidia_chat_summarizer_fallback": "bytedance/seed-oss-36b-instruct",
|
|
13
14
|
"google_level_1": "gemini-3-flash-preview",
|
|
14
15
|
"google_level_2": "gemini-3.5-flash",
|
|
15
16
|
"gemma_emergency": "gemma-4-31b-it",
|
|
@@ -294,11 +295,6 @@
|
|
|
294
295
|
"multimodal": true,
|
|
295
296
|
"desc": "Multimodal"
|
|
296
297
|
},
|
|
297
|
-
{
|
|
298
|
-
"cmd": "mistralai/mistral-nemotron",
|
|
299
|
-
"multimodal": false,
|
|
300
|
-
"desc": "Text Only (No Thinking)"
|
|
301
|
-
},
|
|
302
298
|
{
|
|
303
299
|
"cmd": "\n--- OpenAI Models ---",
|
|
304
300
|
"desc": ""
|
|
@@ -345,6 +341,11 @@
|
|
|
345
341
|
"multimodal": true,
|
|
346
342
|
"desc": "Multimodal"
|
|
347
343
|
},
|
|
344
|
+
{
|
|
345
|
+
"cmd": "qwen/qwen3.5-122b-a10b",
|
|
346
|
+
"multimodal": true,
|
|
347
|
+
"desc": "Multimodal"
|
|
348
|
+
},
|
|
348
349
|
{
|
|
349
350
|
"cmd": "\n--- NVIDIA Models ---",
|
|
350
351
|
"desc": ""
|
|
@@ -372,6 +373,15 @@
|
|
|
372
373
|
"cmd": "meta/llama-3.2-90b-vision-instruct",
|
|
373
374
|
"multimodal": true,
|
|
374
375
|
"desc": "Multimodal"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"cmd": "\n--- ByteDance Models ---",
|
|
379
|
+
"desc": ""
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"cmd": "bytedance/seed-oss-36b-instruct",
|
|
383
|
+
"multimodal": false,
|
|
384
|
+
"desc": "Text Only"
|
|
375
385
|
}
|
|
376
386
|
],
|
|
377
387
|
"Paid": [
|
|
@@ -431,11 +441,6 @@
|
|
|
431
441
|
"multimodal": true,
|
|
432
442
|
"desc": "Multimodal"
|
|
433
443
|
},
|
|
434
|
-
{
|
|
435
|
-
"cmd": "mistralai/mistral-nemotron",
|
|
436
|
-
"multimodal": false,
|
|
437
|
-
"desc": "Text Only (No Thinking)"
|
|
438
|
-
},
|
|
439
444
|
{
|
|
440
445
|
"cmd": "\n--- OpenAI Models ---",
|
|
441
446
|
"desc": ""
|
|
@@ -482,6 +487,11 @@
|
|
|
482
487
|
"multimodal": true,
|
|
483
488
|
"desc": "Multimodal"
|
|
484
489
|
},
|
|
490
|
+
{
|
|
491
|
+
"cmd": "qwen/qwen3.5-122b-a10b",
|
|
492
|
+
"multimodal": true,
|
|
493
|
+
"desc": "Multimodal"
|
|
494
|
+
},
|
|
485
495
|
{
|
|
486
496
|
"cmd": "\n--- NVIDIA Models ---",
|
|
487
497
|
"desc": ""
|
|
@@ -509,6 +519,15 @@
|
|
|
509
519
|
"cmd": "meta/llama-3.2-90b-vision-instruct",
|
|
510
520
|
"multimodal": true,
|
|
511
521
|
"desc": "Multimodal"
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"cmd": "\n--- ByteDance Models ---",
|
|
525
|
+
"desc": ""
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"cmd": "bytedance/seed-oss-36b-instruct",
|
|
529
|
+
"multimodal": false,
|
|
530
|
+
"desc": "Text Only"
|
|
512
531
|
}
|
|
513
532
|
]
|
|
514
533
|
}
|