bravecode-cli 0.1.36 → 0.1.37
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/cli-main.mjs +4 -8
- package/dist/cli-main.mjs.map +2 -2
- package/package.json +1 -1
package/dist/cli-main.mjs
CHANGED
|
@@ -38185,7 +38185,7 @@ var APP_VERSION, APP_NAME;
|
|
|
38185
38185
|
var init_version = __esm({
|
|
38186
38186
|
"src/version.ts"() {
|
|
38187
38187
|
"use strict";
|
|
38188
|
-
APP_VERSION = "0.1.
|
|
38188
|
+
APP_VERSION = "0.1.37";
|
|
38189
38189
|
APP_NAME = "BraveCode";
|
|
38190
38190
|
}
|
|
38191
38191
|
});
|
|
@@ -41965,14 +41965,10 @@ function AgentModelLine({ inline = false }) {
|
|
|
41965
41965
|
const { colors: colors2 } = useTheme();
|
|
41966
41966
|
const { currentAgent, currentModel, isRunning } = useAgent();
|
|
41967
41967
|
return /* @__PURE__ */ jsxs("box", { style: { flexDirection: "row", gap: 1, ...inline ? {} : { paddingLeft: 1, paddingRight: 1, marginTop: 0, marginBottom: 0 } }, children: [
|
|
41968
|
-
/* @__PURE__ */ jsx("text", { fg: colors2.primary, children: /* @__PURE__ */ jsxs("b", { children: [
|
|
41969
|
-
"\u25FC ",
|
|
41970
|
-
s(currentAgent.name.replace(" Agent", ""))
|
|
41971
|
-
] }) }),
|
|
41972
|
-
/* @__PURE__ */ jsx("text", { fg: colors2.textMuted, children: "\xB7" }),
|
|
41973
41968
|
/* @__PURE__ */ jsx("text", { fg: colors2.textSecondary, children: s(currentModel) }),
|
|
41974
|
-
/* @__PURE__ */ jsx("text", { fg: colors2.
|
|
41975
|
-
/* @__PURE__ */ jsx("text", { fg: colors2.
|
|
41969
|
+
/* @__PURE__ */ jsx("text", { fg: colors2.textMuted, children: "\xB7" }),
|
|
41970
|
+
/* @__PURE__ */ jsx("text", { fg: colors2.textMuted, children: "\xB7" }),
|
|
41971
|
+
/* @__PURE__ */ jsx("text", { fg: colors2.primary, children: /* @__PURE__ */ jsx("b", { children: s(currentAgent.name.replace(" Agent", "").toLowerCase()) }) }),
|
|
41976
41972
|
isRunning ? /* @__PURE__ */ jsx("text", { fg: colors2.warning, children: "\xB7 generating\u2026" }) : null
|
|
41977
41973
|
] });
|
|
41978
41974
|
}
|