()
| 1740 | * separate handling in the call sites above. |
| 1741 | */ |
| 1742 | export function isUsing3PServices(): boolean { |
| 1743 | return !!( |
| 1744 | isEnvTruthy(process.env.CLAUDE_CODE_USE_BEDROCK) || |
| 1745 | isEnvTruthy(process.env.CLAUDE_CODE_USE_VERTEX) || |
| 1746 | isEnvTruthy(process.env.CLAUDE_CODE_USE_FOUNDRY) || |
| 1747 | isEnvTruthy(process.env.CLAUDE_CODE_USE_OPENAI) || |
| 1748 | isEnvTruthy(process.env.CLAUDE_CODE_USE_GEMINI) || |
| 1749 | isEnvTruthy(process.env.CLAUDE_CODE_USE_GROK) |
| 1750 | ) |
| 1751 | } |
| 1752 | |
| 1753 | /** |
| 1754 | * Get the configured otelHeadersHelper from settings |
no test coverage detected