fluxflow-cli 3.12.0 → 3.12.1
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 -4
- package/package.json +1 -1
package/dist/fluxflow.js
CHANGED
|
@@ -18582,7 +18582,7 @@ function App({ args = [] }) {
|
|
|
18582
18582
|
return;
|
|
18583
18583
|
}
|
|
18584
18584
|
if (activeView === "providerBudgetSelect") {
|
|
18585
|
-
const PBS_PROVIDERS = ["Google", "DeepSeek", "NVIDIA", "OpenRouter"];
|
|
18585
|
+
const PBS_PROVIDERS = ["Google", "DeepSeek", "Mistral", "NVIDIA", "OpenRouter"];
|
|
18586
18586
|
if (key.upArrow) {
|
|
18587
18587
|
setPbsCursor((c) => (c - 1 + PBS_PROVIDERS.length) % PBS_PROVIDERS.length);
|
|
18588
18588
|
return;
|
|
@@ -20905,7 +20905,7 @@ Selection: ${val}`,
|
|
|
20905
20905
|
}, [suggestionVisibleCount, suggestions.length]);
|
|
20906
20906
|
useEffect12(() => {
|
|
20907
20907
|
if (activeView !== "providerBudgetSelect") return;
|
|
20908
|
-
const PBS_PROVIDERS = ["Google", "DeepSeek", "NVIDIA", "OpenRouter"];
|
|
20908
|
+
const PBS_PROVIDERS = ["Google", "DeepSeek", "Mistral", "NVIDIA", "OpenRouter"];
|
|
20909
20909
|
const existingBudgets = quotas.providerBudgets || {};
|
|
20910
20910
|
const initialSelected = PBS_PROVIDERS.reduce((acc, p) => {
|
|
20911
20911
|
acc[p] = !!(existingBudgets[p] && (existingBudgets[p].agentLimit || existingBudgets[p].tokenLimit));
|
|
@@ -21222,7 +21222,7 @@ Selection: ${val}`,
|
|
|
21222
21222
|
}
|
|
21223
21223
|
);
|
|
21224
21224
|
case "providerBudgetSelect": {
|
|
21225
|
-
const PROVIDERS_LIST = ["Google", "DeepSeek", "NVIDIA", "OpenRouter"];
|
|
21225
|
+
const PROVIDERS_LIST = ["Google", "DeepSeek", "Mistral", "NVIDIA", "OpenRouter"];
|
|
21226
21226
|
const anySelected = PROVIDERS_LIST.some((p) => pbsSelected[p]);
|
|
21227
21227
|
return /* @__PURE__ */ React16.createElement(Box14, { flexDirection: "column", borderStyle: "round", borderColor: "white", padding: 0, width: "100%" }, /* @__PURE__ */ React16.createElement(Box14, { paddingX: 1, marginBottom: 1 }, /* @__PURE__ */ React16.createElement(Text16, { color: "gray", bold: true }, "SELECT PROVIDERS TO SET BUDGETS FOR")), PROVIDERS_LIST.map((prov, i) => {
|
|
21228
21228
|
const isActive = i === pbsCursor;
|
|
@@ -21277,7 +21277,7 @@ Selection: ${val}`,
|
|
|
21277
21277
|
const isFreeTier = apiTier !== "Paid";
|
|
21278
21278
|
const usingProviderBudgets = !!quotas.providerBudgets?.__useProvider;
|
|
21279
21279
|
const providerBudgetsMap = quotas.providerBudgets || {};
|
|
21280
|
-
const configuredProviders = ["Google", "DeepSeek", "NVIDIA", "OpenRouter"].filter(
|
|
21280
|
+
const configuredProviders = ["Google", "DeepSeek", "Mistral", "NVIDIA", "OpenRouter"].filter(
|
|
21281
21281
|
(p) => providerBudgetsMap[p] && (providerBudgetsMap[p].agentLimit || providerBudgetsMap[p].tokenLimit || providerBudgetsMap[p].monthlyTokenLimit)
|
|
21282
21282
|
);
|
|
21283
21283
|
const limitsNotSet = !usingProviderBudgets && (shouldClearValue(reqLimit) || shouldClearValue(tokenLimit) || shouldClearValue(monthlyLimit));
|