(model: string)
| 1204 | } |
| 1205 | |
| 1206 | export function isDeepResearchModel(model: string): boolean { |
| 1207 | return MODELS_WITH_DEEP_RESEARCH.includes(model.toLowerCase()) |
| 1208 | } |
| 1209 | |
| 1210 | export function isGemini3Model(model: string): boolean { |
| 1211 | const normalized = model.toLowerCase().replace(/^vertex\//, '') |
no outgoing calls
no test coverage detected