fluxflow-cli 1.3.5 → 1.3.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 +4 -5
- package/package.json +1 -1
package/dist/fluxflow.js
CHANGED
|
@@ -1667,7 +1667,7 @@ USER_PROMPT: ${agentText}`.trim();
|
|
|
1667
1667
|
TERMINATION_SIGNAL = false;
|
|
1668
1668
|
let fullAgentResponseChunks = [];
|
|
1669
1669
|
modifiedHistory.forEach((msg) => {
|
|
1670
|
-
if (msg.text) {
|
|
1670
|
+
if (msg.text && msg.role === "agent") {
|
|
1671
1671
|
msg.text = msg.text.replace(/<(think|thought)>[\s\S]*?<\/(think|thought)>/gi, "").trim();
|
|
1672
1672
|
}
|
|
1673
1673
|
});
|
|
@@ -1712,14 +1712,14 @@ USER_PROMPT: ${agentText}`.trim();
|
|
|
1712
1712
|
} else if (retryCount > 0) {
|
|
1713
1713
|
yield { type: "model_update", content: null };
|
|
1714
1714
|
}
|
|
1715
|
+
fs12.writeFileSync("contents.json", JSON.stringify(contents));
|
|
1715
1716
|
stream = await client.models.generateContentStream({
|
|
1716
1717
|
model: targetModel,
|
|
1717
1718
|
contents,
|
|
1718
1719
|
config: {
|
|
1719
|
-
temperature: mode === "Flux" ? 0.95 : 1.2,
|
|
1720
1720
|
thinkingConfig: {
|
|
1721
1721
|
includeThoughts: false,
|
|
1722
|
-
thinkingLevel:
|
|
1722
|
+
thinkingLevel: ThinkingLevel.MINIMAL
|
|
1723
1723
|
}
|
|
1724
1724
|
}
|
|
1725
1725
|
});
|
|
@@ -1952,7 +1952,6 @@ ${boxBottom}
|
|
|
1952
1952
|
model: janitorModel || "gemma-4-26b-a4b-it",
|
|
1953
1953
|
contents: janitorContents,
|
|
1954
1954
|
config: {
|
|
1955
|
-
temperature: 0.5,
|
|
1956
1955
|
thinkingConfig: {
|
|
1957
1956
|
includeThoughts: false,
|
|
1958
1957
|
thinkingLevel: ThinkingLevel.MINIMAL
|
|
@@ -3718,7 +3717,7 @@ var init_app = __esm({
|
|
|
3718
3717
|
init_terminal();
|
|
3719
3718
|
SESSION_START_TIME = Date.now();
|
|
3720
3719
|
CHANGELOG_URL = "https://fluxflow-cli.onrender.com/changelog.html";
|
|
3721
|
-
versionFluxflow = "1.3.
|
|
3720
|
+
versionFluxflow = "1.3.6";
|
|
3722
3721
|
updatedOn = "2026-04-29";
|
|
3723
3722
|
ResolutionModal = ({ data, onResolve, onEdit }) => /* @__PURE__ */ React10.createElement(Box10, { flexDirection: "column", borderStyle: "round", borderColor: "magenta", paddingX: 2, paddingY: 1, width: "100%" }, /* @__PURE__ */ React10.createElement(Text10, { color: "magenta", bold: true, underline: true }, "\u{1F7E3} STEERING HINT RESOLUTION"), /* @__PURE__ */ React10.createElement(Text10, { marginTop: 1 }, "The agent already finished the task (turn: finish) before your hint was consumed."), /* @__PURE__ */ React10.createElement(Box10, { marginTop: 1, backgroundColor: "#222", paddingX: 1, width: "100%" }, /* @__PURE__ */ React10.createElement(Text10, { italic: true, color: "gray" }, '"', data, '"')), /* @__PURE__ */ React10.createElement(Box10, { marginTop: 1 }, /* @__PURE__ */ React10.createElement(Text10, { color: "cyan" }, "How would you like to proceed?")), /* @__PURE__ */ React10.createElement(Box10, { marginTop: 1 }, /* @__PURE__ */ React10.createElement(
|
|
3724
3723
|
CommandMenu,
|