(mainLoopModel: string | null)
| 352 | return properties; |
| 353 | } |
| 354 | export function getModelDisplayLabel(mainLoopModel: string | null): string { |
| 355 | let modelLabel = modelDisplayString(mainLoopModel); |
| 356 | if (mainLoopModel === null && isClaudeAISubscriber()) { |
| 357 | const description = getClaudeAiUserDefaultModelDescription(); |
| 358 | modelLabel = `${chalk.bold('Default')} ${description}`; |
| 359 | } |
| 360 | return modelLabel; |
| 361 | } |
no test coverage detected