holomime 3.3.1 → 3.3.3
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.js
CHANGED
|
@@ -3603,7 +3603,7 @@ function printBanner() {
|
|
|
3603
3603
|
console.log();
|
|
3604
3604
|
console.log(holomimeGradient(LOGO));
|
|
3605
3605
|
console.log();
|
|
3606
|
-
console.log(` ${chalk.dim("
|
|
3606
|
+
console.log(` ${chalk.dim("Behavioral intelligence for AI agents and humanoid robots")} ${chalk.bgCyan.black(` v${VERSION} `)}`);
|
|
3607
3607
|
console.log();
|
|
3608
3608
|
}
|
|
3609
3609
|
function printHeader(title) {
|
|
@@ -21854,8 +21854,7 @@ async function configCommand(options) {
|
|
|
21854
21854
|
});
|
|
21855
21855
|
const ask = (question) => new Promise((resolve57) => rl.question(question, resolve57));
|
|
21856
21856
|
try {
|
|
21857
|
-
|
|
21858
|
-
const provider = (await ask(" Provider [anthropic]: ")).trim() || "anthropic";
|
|
21857
|
+
const provider = (await ask(" Provider (anthropic/openai) [anthropic]: ")).trim().toLowerCase() || "anthropic";
|
|
21859
21858
|
if (provider !== "anthropic" && provider !== "openai") {
|
|
21860
21859
|
console.log(chalk49.red(` Unsupported provider: ${provider}`));
|
|
21861
21860
|
rl.close();
|
|
@@ -21868,12 +21867,6 @@ async function configCommand(options) {
|
|
|
21868
21867
|
rl.close();
|
|
21869
21868
|
return;
|
|
21870
21869
|
}
|
|
21871
|
-
if (provider === "anthropic" && !apiKey.startsWith("sk-ant-")) {
|
|
21872
|
-
console.log(chalk49.yellow(" Warning: Anthropic keys usually start with sk-ant-"));
|
|
21873
|
-
}
|
|
21874
|
-
if (provider === "openai" && !apiKey.startsWith("sk-")) {
|
|
21875
|
-
console.log(chalk49.yellow(" Warning: OpenAI keys usually start with sk-"));
|
|
21876
|
-
}
|
|
21877
21870
|
const config = { provider, apiKey };
|
|
21878
21871
|
saveConfig(config);
|
|
21879
21872
|
console.log();
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<title>NeuralSpace —
|
|
6
|
+
<title>NeuralSpace — holomime Brain</title>
|
|
7
7
|
<link rel="stylesheet" href="styles.css">
|
|
8
8
|
<script src="https://cdn.jsdelivr.net/npm/pako@2.1.0/dist/pako_inflate.min.js"></script>
|
|
9
9
|
<script type="importmap">
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
<a href="https://holomime.com/brain">Learn more</a>
|
|
65
65
|
</div>
|
|
66
66
|
|
|
67
|
-
<div id="watermark">Powered by
|
|
67
|
+
<div id="watermark">Powered by holomime</div>
|
|
68
68
|
</div>
|
|
69
69
|
|
|
70
70
|
<div id="sidebar">
|