fluxflow-cli 1.3.3 → 1.3.4
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/README.md +1 -1
- package/dist/fluxflow.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ npm install -g fluxflow-cli
|
|
|
19
19
|
fluxflow-cli
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
-
*The agent will prompt you for your Gemini API Key on the first run and store it securely in an XOR-encrypted vault.*
|
|
22
|
+
*The agent will prompt you for your Gemini API Key on the first run and store it securely in an XOR-encrypted vault.* Free API Key recomemded to use Gemma 4 (Default Model).
|
|
23
23
|
|
|
24
24
|
---
|
|
25
25
|
|
package/dist/fluxflow.js
CHANGED
|
@@ -3078,7 +3078,7 @@ Selection: ${val}`,
|
|
|
3078
3078
|
CommandMenu,
|
|
3079
3079
|
{
|
|
3080
3080
|
title: "\u{1F916} Select AI Model",
|
|
3081
|
-
items: [{ label: "Gemma 4 31B (Recomended - Default)", value: "gemma-4-31b-it" }, { label: "Gemini 3.1 Pro (Recomended - Req. paid API Key)", value: "gemini-3.1-pro-preview" }, { label: "Gemini 3 Flash (Paid API Key Recomended)", value: "gemini-3-flash-preview" }, { label: "Gemini 3.1 Flash Lite (Fastest - For Quick Tasks ONLY)", value: "gemini-3.1-flash-lite-preview" }, { label: "Cancel", value: "Cancel" }],
|
|
3081
|
+
items: [{ label: "Gemma 4 31B (Recomended - Default, Use Free Tier Key)", value: "gemma-4-31b-it" }, { label: "Gemini 3.1 Pro (Recomended - Req. paid API Key)", value: "gemini-3.1-pro-preview" }, { label: "Gemini 3 Flash (Paid API Key Recomended)", value: "gemini-3-flash-preview" }, { label: "Gemini 3.1 Flash Lite (Fastest - For Quick Tasks ONLY)", value: "gemini-3.1-flash-lite-preview" }, { label: "Cancel", value: "Cancel" }],
|
|
3082
3082
|
onSelect: (item) => {
|
|
3083
3083
|
if (item.value !== "Cancel") setActiveModel(item.value);
|
|
3084
3084
|
setActiveView("chat");
|
|
@@ -3640,7 +3640,7 @@ var init_app = __esm({
|
|
|
3640
3640
|
init_terminal();
|
|
3641
3641
|
SESSION_START_TIME = Date.now();
|
|
3642
3642
|
CHANGELOG_URL = "https://fluxflow-cli.onrender.com/changelog.html";
|
|
3643
|
-
versionFluxflow = "1.3.
|
|
3643
|
+
versionFluxflow = "1.3.4";
|
|
3644
3644
|
updatedOn = "2026-04-29";
|
|
3645
3645
|
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(
|
|
3646
3646
|
CommandMenu,
|