()
| 69 | } |
| 70 | |
| 71 | function getLegacyOpenAICompatBaseUrl(): string | undefined { |
| 72 | const legacyBaseUrl = process.env.ANTHROPIC_BASE_URL?.trim() |
| 73 | if (!legacyBaseUrl) { |
| 74 | return undefined |
| 75 | } |
| 76 | return isFirstPartyNoumenaBaseUrl() ? undefined : legacyBaseUrl |
| 77 | } |
| 78 | |
| 79 | function getOpenAICompatByokHeaders(apiKey: string): Record<string, string> { |
| 80 | return { |
no test coverage detected