(model: string)
| 272 | * Returns undefined if model is not found |
| 273 | */ |
| 274 | export function getModelPricingString(model: string): string | undefined { |
| 275 | const shortName = getCanonicalName(model) |
| 276 | const costs = MODEL_COSTS[shortName] |
| 277 | if (!costs) return undefined |
| 278 | return formatModelPricing(costs) |
| 279 | } |
nothing calls this directly
no test coverage detected