()
| 17 | // ─── Helpers ─── |
| 18 | |
| 19 | function buildModelPricing(): Map<string, ModelPricing> { |
| 20 | const map = new Map<string, ModelPricing>(); |
| 21 | for (const m of BLOCKRUN_MODELS) { |
| 22 | if (m.id === "blockrun/auto") continue; |
| 23 | map.set(m.id, { inputPrice: m.inputPrice, outputPrice: m.outputPrice }); |
| 24 | } |
| 25 | return map; |
| 26 | } |
| 27 | |
| 28 | let passed = 0; |
| 29 | let failed = 0; |