(model: string)
| 1208 | } |
| 1209 | |
| 1210 | export function isGemini3Model(model: string): boolean { |
| 1211 | const normalized = model.toLowerCase().replace(/^vertex\//, '') |
| 1212 | return normalized.startsWith('gemini-3') |
| 1213 | } |
| 1214 | |
| 1215 | /** |
| 1216 | * Get the maximum temperature value for a model |
no test coverage detected