fluxflow-cli 1.7.8 → 1.7.9
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 +8 -2
- package/package.json +1 -1
package/dist/fluxflow.js
CHANGED
|
@@ -2499,7 +2499,13 @@ USER_PROMPT: ${agentText}`.trim();
|
|
|
2499
2499
|
let toolResults = [];
|
|
2500
2500
|
const shouldContinue = toolCalls.length > 0;
|
|
2501
2501
|
if (toolCalls.length > 0) {
|
|
2502
|
+
let toolIdx = 0;
|
|
2502
2503
|
for (const toolCall of toolCalls) {
|
|
2504
|
+
if (toolIdx > 0) {
|
|
2505
|
+
yield { type: "status", content: `Preparing next tool (${toolCall.toolName})...` };
|
|
2506
|
+
await new Promise((resolve) => setTimeout(resolve, 3e3));
|
|
2507
|
+
}
|
|
2508
|
+
toolIdx++;
|
|
2503
2509
|
yield { type: "turn_reset", content: true };
|
|
2504
2510
|
yield { type: "status", content: `Working (${toolCall.toolName})...` };
|
|
2505
2511
|
let label = "";
|
|
@@ -4673,8 +4679,8 @@ var init_app = __esm({
|
|
|
4673
4679
|
init_setup();
|
|
4674
4680
|
SESSION_START_TIME = Date.now();
|
|
4675
4681
|
CHANGELOG_URL = "https://fluxflow-cli.onrender.com/changelog.html";
|
|
4676
|
-
versionFluxflow = "1.7.
|
|
4677
|
-
updatedOn = "2026-05-
|
|
4682
|
+
versionFluxflow = "1.7.9";
|
|
4683
|
+
updatedOn = "2026-05-04";
|
|
4678
4684
|
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(
|
|
4679
4685
|
CommandMenu,
|
|
4680
4686
|
{
|