()
| 213 | * and may not be supported by proxies or other providers. |
| 214 | */ |
| 215 | export function shouldIncludeFirstPartyOnlyBetas(): boolean { |
| 216 | return ( |
| 217 | (getAPIProvider() === 'firstParty' || getAPIProvider() === 'foundry') && |
| 218 | !isEnvTruthy(process.env.CLAUDE_CODE_DISABLE_EXPERIMENTAL_BETAS) |
| 219 | ) |
| 220 | } |
| 221 | |
| 222 | /** |
| 223 | * Global-scope prompt caching is firstParty only. Foundry is excluded because |
no test coverage detected