MCPcopy Create free account
hub / github.com/oboard/claude-code-rev / isUsing3PServices

Function isUsing3PServices

src/utils/auth.ts:1782–1788  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1780
1781/** Check if using third-party services (Bedrock or Vertex or Foundry) */
1782export 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

Callers 4

commands.tsFile · 0.85
getFeedbackGuidelineFunction · 0.85
authStatusFunction · 0.85

Calls 1

isEnvTruthyFunction · 0.85

Tested by

no test coverage detected