(model: string)
| 224 | * Returns undefined if model is not found |
| 225 | */ |
| 226 | export function getModelPricingString(model: string): string | undefined { |
| 227 | const shortName = getCanonicalName(model) |
| 228 | const costs = MODEL_COSTS[shortName] |
| 229 | if (!costs) return undefined |
| 230 | return formatModelPricing(costs) |
| 231 | } |
| 232 |
nothing calls this directly
no test coverage detected