(model: string)
| 127 | |
| 128 | // Models to exclude from cache break detection (e.g., haiku has different caching behavior) |
| 129 | function isExcludedModel(model: string): boolean { |
| 130 | return model.includes('haiku') |
| 131 | } |
| 132 | |
| 133 | /** |
| 134 | * Returns the tracking key for a querySource, or null if untracked. |
no outgoing calls
no test coverage detected