(mainLoopModel: string | null)
| 439 | } |
| 440 | |
| 441 | export function getModelDisplayLabel(mainLoopModel: string | null): string { |
| 442 | let modelLabel = modelDisplayString(mainLoopModel); |
| 443 | |
| 444 | if (mainLoopModel === null && isClaudeAISubscriber()) { |
| 445 | const description = getClaudeAiUserDefaultModelDescription(); |
| 446 | |
| 447 | modelLabel = `${chalk.bold('Default')} ${description}`; |
| 448 | } |
| 449 | |
| 450 | return modelLabel; |
| 451 | } |
no test coverage detected