@deepseekdev/coder 1.0.80 → 1.0.82
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/headless/interactiveShell.js +1 -1
- package/dist/headless/interactiveShell.js.map +1 -1
- package/dist/ui/UnifiedUIRenderer.d.ts +14 -0
- package/dist/ui/UnifiedUIRenderer.d.ts.map +1 -1
- package/dist/ui/UnifiedUIRenderer.js +88 -5
- package/dist/ui/UnifiedUIRenderer.js.map +1 -1
- package/package.json +1 -1
|
@@ -519,7 +519,7 @@ class InteractiveShell {
|
|
|
519
519
|
catch {
|
|
520
520
|
balanceText = 'Balance unavailable';
|
|
521
521
|
}
|
|
522
|
-
welcomeLines.push(chalk.dim(` ${this.profileConfig.model} · ${this.profileConfig.provider}`), chalk.dim(' Key: ') + chalk.green(maskedKey) + chalk.dim(' · Balance: ') + chalk.hex('#10B981')(balanceText), chalk.dim(' /help for commands'), '');
|
|
522
|
+
welcomeLines.push(chalk.dim(` ${this.profileConfig.model} · ${this.profileConfig.provider}`), chalk.dim(' Key: ') + chalk.green(maskedKey) + chalk.dim(' · Balance: ') + chalk.hex('#10B981')(balanceText) + chalk.dim(' · ') + chalk.cyan('platform.deepseek.com'), chalk.dim(' /help for commands · /key to change API key'), '');
|
|
523
523
|
}
|
|
524
524
|
const welcomeContent = welcomeLines.join('\n');
|
|
525
525
|
// Use renderer event system instead of direct stdout writes
|