* Normalize model ID for matching (handle version number formats)
(modelId: string)
| 137 | * Normalize model ID for matching (handle version number formats) |
| 138 | */ |
| 139 | function normalizeModelId(modelId: string): string { |
| 140 | return modelId.replace(/\./g, "-") // Convert 4.5 to 4-5 |
| 141 | } |
| 142 | |
| 143 | function stripThinkingSuffix(modelId: string): string { |
| 144 | return modelId.replace(/-thinking$/i, "") |
no outgoing calls
no test coverage detected