(modelString: string)
| 110 | * avoid a modelDisplay -> knownModels -> modelDisplay import cycle. |
| 111 | */ |
| 112 | export function formatModelStringForDisplay(modelString: string): string { |
| 113 | return formatModelDisplayName(getModelName(modelString)); |
| 114 | } |
| 115 | |
| 116 | /** |
| 117 | * Extract the provider from a model string (e.g., "anthropic:claude-sonnet-4-5" -> "anthropic") |
no test coverage detected