(costs: ModelCosts)
| 263 | * e.g., "$3/$15 per Mtok" |
| 264 | */ |
| 265 | export function formatModelPricing(costs: ModelCosts): string { |
| 266 | return `${formatPrice(costs.inputTokens)}/${formatPrice(costs.outputTokens)} per Mtok` |
| 267 | } |
| 268 | |
| 269 | /** |
| 270 | * Get formatted pricing string for a model |
no test coverage detected