()
| 1780 | |
| 1781 | /** Check if using third-party services (Bedrock or Vertex or Foundry) */ |
| 1782 | export function isUsing3PServices(): boolean { |
| 1783 | return !!( |
| 1784 | isEnvTruthy(process.env.CLAUDE_CODE_USE_BEDROCK) || |
| 1785 | isEnvTruthy(process.env.CLAUDE_CODE_USE_VERTEX) || |
| 1786 | isEnvTruthy(process.env.CLAUDE_CODE_USE_FOUNDRY) |
| 1787 | ) |
| 1788 | } |
| 1789 | |
| 1790 | /** |
| 1791 | * Get the configured otelHeadersHelper from settings |
no test coverage detected