fleetbo-cockpit-cli 1.0.89 → 1.0.90
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/cli.js +8 -8
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -516,24 +516,24 @@ if (command === 'alex') {
|
|
|
516
516
|
// ═══════════════════════════════════════════════
|
|
517
517
|
if (!hasAiKey) {
|
|
518
518
|
console.log('');
|
|
519
|
-
console.log('\x1b[90m
|
|
519
|
+
console.log('\x1b[90m ┌────────────────────────────────────────────────────────────┐\x1b[0m');
|
|
520
520
|
console.log('\x1b[90m │\x1b[0m \x1b[90m│\x1b[0m');
|
|
521
521
|
console.log('\x1b[90m │\x1b[0m \x1b[1m\x1b[33m🧠 AI Configuration Required\x1b[0m \x1b[90m│\x1b[0m');
|
|
522
522
|
console.log('\x1b[90m │\x1b[0m \x1b[90m│\x1b[0m');
|
|
523
523
|
console.log('\x1b[90m │\x1b[0m Alex needs a powerful AI model to forge native code. \x1b[90m│\x1b[0m');
|
|
524
|
-
console.log('\x1b[90m │\x1b[0m Connect your own AI key
|
|
524
|
+
console.log('\x1b[90m │\x1b[0m Connect your own AI key to continue. \x1b[90m│\x1b[0m');
|
|
525
525
|
console.log('\x1b[90m │\x1b[0m \x1b[90m│\x1b[0m');
|
|
526
526
|
console.log('\x1b[90m │\x1b[0m \x1b[1mSupported providers:\x1b[0m \x1b[90m│\x1b[0m');
|
|
527
527
|
console.log('\x1b[90m │\x1b[0m \x1b[90m│\x1b[0m');
|
|
528
|
-
console.log('\x1b[90m │\x1b[0m \x1b[32m●\x1b[0m Google AI \x1b[90m(Gemini Pro)\x1b[0m
|
|
529
|
-
console.log('\x1b[90m │\x1b[0m \x1b[36mhttps://aistudio.google.com/app/apikey\x1b[0m
|
|
528
|
+
console.log('\x1b[90m │\x1b[0m \x1b[32m●\x1b[0m Google AI \x1b[90m(Gemini Pro)\x1b[0m \x1b[90m│\x1b[0m');
|
|
529
|
+
console.log('\x1b[90m │\x1b[0m \x1b[36mhttps://aistudio.google.com/app/apikey\x1b[0m \x1b[90m│\x1b[0m');
|
|
530
530
|
console.log('\x1b[90m │\x1b[0m \x1b[90m│\x1b[0m');
|
|
531
|
-
console.log('\x1b[90m │\x1b[0m \x1b[33m●\x1b[0m Anthropic \x1b[90m(Claude Sonnet / Opus)\x1b[0m
|
|
532
|
-
console.log('\x1b[90m │\x1b[0m \x1b[36mhttps://console.anthropic.com/settings/keys\x1b[0m
|
|
531
|
+
console.log('\x1b[90m │\x1b[0m \x1b[33m●\x1b[0m Anthropic \x1b[90m(Claude Sonnet / Opus)\x1b[0m \x1b[90m│\x1b[0m');
|
|
532
|
+
console.log('\x1b[90m │\x1b[0m \x1b[36mhttps://console.anthropic.com/settings/keys\x1b[0m \x1b[90m│\x1b[0m');
|
|
533
533
|
console.log('\x1b[90m │\x1b[0m \x1b[90m│\x1b[0m');
|
|
534
|
-
console.log('\x1b[90m │\x1b[0m \x1b[
|
|
534
|
+
console.log('\x1b[90m │\x1b[0m \x1b[90mClick the \x1b[32m[+]\x1b[90m button in the Terminal top-right bar \x1b[90m│\x1b[0m');
|
|
535
535
|
console.log('\x1b[90m │\x1b[0m \x1b[90m│\x1b[0m');
|
|
536
|
-
console.log('\x1b[90m
|
|
536
|
+
console.log('\x1b[90m └────────────────────────────────────────────────────────────┘\x1b[0m');
|
|
537
537
|
console.log('');
|
|
538
538
|
process.exit(0);
|
|
539
539
|
}
|