(costs: ModelCosts)
| 215 | * e.g., "$3/$15 per Mtok" |
| 216 | */ |
| 217 | export function formatModelPricing(costs: ModelCosts): string { |
| 218 | return `${formatPrice(costs.inputTokens)}/${formatPrice(costs.outputTokens)} per Mtok` |
| 219 | } |
| 220 | |
| 221 | /** |
| 222 | * Get formatted pricing string for a model |
no test coverage detected