(calls: number)
| 203 | } |
| 204 | |
| 205 | export function estimateRoundTripTimeMs(calls: number): number { |
| 206 | const safeCalls = Math.max(0, calls) |
| 207 | return safeCalls * EFFICIENCY_CONSTANTS.AVG_ROUND_TRIP_MS |
| 208 | } |
| 209 | |
| 210 | export function estimateCostFromBytes(bytes: number, model?: string): number { |
| 211 | const pricingKey = model ? MODEL_MAPPING[model] || model : 'claude-haiku-4.5' |