()
| 1798 | |
| 1799 | /** Check if using third-party services (Bedrock or Vertex or Foundry) */ |
| 1800 | export function isUsing3PServices(): boolean { |
| 1801 | return !!( |
| 1802 | isEnvTruthy(process.env.CLAUDE_CODE_USE_BEDROCK) || |
| 1803 | isEnvTruthy(process.env.CLAUDE_CODE_USE_VERTEX) || |
| 1804 | isEnvTruthy(process.env.CLAUDE_CODE_USE_FOUNDRY) |
| 1805 | ) |
| 1806 | } |
| 1807 | |
| 1808 | /** |
| 1809 | * Get the configured otelHeadersHelper from settings |
no test coverage detected