()
| 1730 | |
| 1731 | /** Check if using third-party services (Bedrock or Vertex or Foundry) */ |
| 1732 | export function isUsing3PServices(): boolean { |
| 1733 | return !!( |
| 1734 | isEnvTruthy(process.env.CLAUDE_CODE_USE_BEDROCK) || |
| 1735 | isEnvTruthy(process.env.CLAUDE_CODE_USE_VERTEX) || |
| 1736 | isEnvTruthy(process.env.CLAUDE_CODE_USE_FOUNDRY) |
| 1737 | ) |
| 1738 | } |
| 1739 | |
| 1740 | /** |
| 1741 | * Get the configured otelHeadersHelper from settings |
no test coverage detected