fluxflow-cli 3.4.8 → 3.4.10
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 +6 -2
- package/model_config.json +37 -1
- package/package.json +2 -2
package/dist/fluxflow.js
CHANGED
|
@@ -5112,7 +5112,7 @@ var init_StatusBar = __esm({
|
|
|
5112
5112
|
paddingX: 1,
|
|
5113
5113
|
width: "100%"
|
|
5114
5114
|
},
|
|
5115
|
-
/* @__PURE__ */ React5.createElement(Box4, null, /* @__PURE__ */ React5.createElement(Box4, { marginRight: 1 }, /* @__PURE__ */ React5.createElement(Text5, { color: "white", bold: true }, mode.toUpperCase())), /* @__PURE__ */ React5.createElement(Text5, { color: "gray", dimColor: true }, "\u2503"), /* @__PURE__ */ React5.createElement(Box4, { marginX: 1 }, /* @__PURE__ */ React5.createElement(Text5, { color: "white", bold: true }, thinkingLevel.toUpperCase())), /* @__PURE__ */ React5.createElement(Text5, { color: "gray", dimColor: true }, "\u2503"), /* @__PURE__ */ React5.createElement(Box4, { marginX: 1 }, /* @__PURE__ */ React5.createElement(Text5, { color: "gray", bold: true }, "MEM: "), /* @__PURE__ */ React5.createElement(Text5, { color: "white", bold: true }, isMemoryEnabled ? "ON" : "OFF"))),
|
|
5115
|
+
/* @__PURE__ */ React5.createElement(Box4, null, /* @__PURE__ */ React5.createElement(Box4, { marginRight: 1 }, /* @__PURE__ */ React5.createElement(Text5, { color: "white", bold: true }, mode.toUpperCase())), /* @__PURE__ */ React5.createElement(Text5, { color: "gray", dimColor: true }, "\u2503"), /* @__PURE__ */ React5.createElement(Box4, { marginX: 1 }, /* @__PURE__ */ React5.createElement(Text5, { color: "white", bold: true }, thinkingLevel.toUpperCase())), isMemoryEnabled && /* @__PURE__ */ React5.createElement(Box4, null, /* @__PURE__ */ React5.createElement(Text5, { color: "gray", dimColor: true }, "\u2503"), /* @__PURE__ */ React5.createElement(Box4, { marginX: 1 }, /* @__PURE__ */ React5.createElement(Text5, { color: "gray", bold: true }, "MEM: "), /* @__PURE__ */ React5.createElement(Text5, { color: "white", bold: true }, isMemoryEnabled ? "ON" : "OFF")))),
|
|
5116
5116
|
/* @__PURE__ */ React5.createElement(Box4, { flexGrow: 1, justifyContent: "center", paddingX: 2 }, /* @__PURE__ */ React5.createElement(Text5, { color: "white", italic: true }, truncatePath(process.cwd(), 35))),
|
|
5117
5117
|
/* @__PURE__ */ React5.createElement(Box4, null, isProcessing ? /* @__PURE__ */ React5.createElement(Box4, { marginRight: 0 }, /* @__PURE__ */ React5.createElement(Text5, { color: dotColor }, "\u25CF")) : /* @__PURE__ */ React5.createElement(Text5, null, " "), /* @__PURE__ */ React5.createElement(Box4, { marginX: 1 }, /* @__PURE__ */ React5.createElement(Text5, { color: "white" }, formatTokens(tokensTotal), " ", (() => {
|
|
5118
5118
|
const pct = tokens / maxLimit * 100;
|
|
@@ -11261,6 +11261,8 @@ var init_ai = __esm({
|
|
|
11261
11261
|
const isNemotron = model.includes("nemotron");
|
|
11262
11262
|
const isLlama3 = model.includes("llama-3");
|
|
11263
11263
|
const isBytedance = model.includes("seed");
|
|
11264
|
+
const isPoolside = model.includes("poolside");
|
|
11265
|
+
const isThinkingmachines = model.includes("thinkingmachines");
|
|
11264
11266
|
const GPT_THINKING_LEVELS = {
|
|
11265
11267
|
"Fast": "low",
|
|
11266
11268
|
"Low": "low",
|
|
@@ -11287,7 +11289,7 @@ var init_ai = __esm({
|
|
|
11287
11289
|
temperature,
|
|
11288
11290
|
...isGPT && { thinking: GPT_THINKING_LEVELS[thinkingLevel] || "high" }
|
|
11289
11291
|
};
|
|
11290
|
-
if (isLlama3) {
|
|
11292
|
+
if (isLlama3 || isThinkingmachines) {
|
|
11291
11293
|
} else if (isKimi) {
|
|
11292
11294
|
body.chat_template_kwargs = { thinking: isThinking };
|
|
11293
11295
|
} else if (isGemma) {
|
|
@@ -11323,6 +11325,8 @@ var init_ai = __esm({
|
|
|
11323
11325
|
thinking_budget: parseInt(BYTEDANCE_THINKING_LEVELS[apiLevel] ?? "4096")
|
|
11324
11326
|
};
|
|
11325
11327
|
}
|
|
11328
|
+
} else if (isPoolside) {
|
|
11329
|
+
body.chat_template_kwargs = { enable_thinking: isThinking };
|
|
11326
11330
|
}
|
|
11327
11331
|
let attempts = 0;
|
|
11328
11332
|
const maxAttempts = 6;
|
package/model_config.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 0,
|
|
3
|
-
"release":
|
|
3
|
+
"release": 20260719,
|
|
4
4
|
"fallbacks": {
|
|
5
5
|
"janitor_default": "gemini-3.1-flash-lite",
|
|
6
6
|
"janitor_attempts_fallback": "gemma-4-26b-a4b-it",
|
|
@@ -382,6 +382,24 @@
|
|
|
382
382
|
"cmd": "bytedance/seed-oss-36b-instruct",
|
|
383
383
|
"multimodal": false,
|
|
384
384
|
"desc": "Text Only"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"cmd": "\n--- Poolside Models ---",
|
|
388
|
+
"desc": ""
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"cmd": "poolside/laguna-xs-2.1",
|
|
392
|
+
"multimodal": false,
|
|
393
|
+
"desc": "Text Only"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"cmd": "\n--- Thinking Machines Models ---",
|
|
397
|
+
"desc": ""
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"cmd": "thinkingmachines/inkling",
|
|
401
|
+
"multimodal": false,
|
|
402
|
+
"desc": "Text Only (Reasoning Model)"
|
|
385
403
|
}
|
|
386
404
|
],
|
|
387
405
|
"Paid": [
|
|
@@ -528,6 +546,24 @@
|
|
|
528
546
|
"cmd": "bytedance/seed-oss-36b-instruct",
|
|
529
547
|
"multimodal": false,
|
|
530
548
|
"desc": "Text Only"
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
"cmd": "\n--- Poolside Models ---",
|
|
552
|
+
"desc": ""
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"cmd": "poolside/laguna-xs-2.1",
|
|
556
|
+
"multimodal": false,
|
|
557
|
+
"desc": "Text Only"
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"cmd": "\n--- Thinking Machines Models ---",
|
|
561
|
+
"desc": ""
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"cmd": "thinkingmachines/inkling",
|
|
565
|
+
"multimodal": false,
|
|
566
|
+
"desc": "Text Only (Reasoning Model)"
|
|
531
567
|
}
|
|
532
568
|
]
|
|
533
569
|
}
|