@dimivelev/chimera 0.78.0 → 0.78.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/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +6 -10
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/sandbox/package-lock.json +2 -2
- package/examples/extensions/sandbox/package.json +1 -1
- package/examples/extensions/with-deps/package-lock.json +2 -2
- package/examples/extensions/with-deps/package.json +1 -1
- package/node_modules/@dimivelev/chimera-agent-core/package.json +2 -2
- package/node_modules/@dimivelev/chimera-ai/package.json +1 -1
- package/node_modules/@dimivelev/chimera-tui/package.json +1 -1
- package/npm-shrinkwrap.json +12 -12
- package/package.json +4 -4
|
@@ -431,16 +431,12 @@ export class InteractiveMode {
|
|
|
431
431
|
// Add header with keybindings from config (unless silenced)
|
|
432
432
|
if (this.options.verbose || !this.settingsManager.getQuietStartup()) {
|
|
433
433
|
const logoLines = [
|
|
434
|
-
`
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
`
|
|
439
|
-
`
|
|
440
|
-
` | * C H I M E R A * |`,
|
|
441
|
-
` | ~~~~~~~~~~~~~~~~~~~~ |`,
|
|
442
|
-
` | |`,
|
|
443
|
-
` +==============================+`,
|
|
434
|
+
`_________ ___ ___ .___ _____ _____________________ _____ `,
|
|
435
|
+
`\\_ ___ \\ / | \\| | / \\ \\_ _____/\\______ \\ / _ \\ `,
|
|
436
|
+
`/ \\ \\// ~ \\ |/ \\ / \\ | __)_ | _/ / /_\\ \\ `,
|
|
437
|
+
`\\ \\___\\ Y / / Y \\| \\ | | \\/ | \\`,
|
|
438
|
+
` \\______ /\\___|_ /|___\\____|__ /_______ / |____|_ /\\____|__ /`,
|
|
439
|
+
` \\/ \\/ \\/ \\/ \\/ \\/ `,
|
|
444
440
|
];
|
|
445
441
|
const asciiLogo = logoLines.map((l) => theme.bold(theme.fg("accent", l))).join("\n");
|
|
446
442
|
const logo = `${asciiLogo}\n${theme.fg("dim", `v${this.version}`)}`;
|