()
| 225 | * treatment data is firstParty-only. |
| 226 | */ |
| 227 | export function shouldUseGlobalCacheScope(): boolean { |
| 228 | return ( |
| 229 | getAPIProvider() === 'firstParty' && |
| 230 | !isEnvTruthy(process.env.CLAUDE_CODE_DISABLE_EXPERIMENTAL_BETAS) |
| 231 | ) |
| 232 | } |
| 233 | |
| 234 | export const getAllModelBetas = memoize((model: string): string[] => { |
| 235 | const betaHeaders = [] |
no test coverage detected