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