fix: narrow legacy GLMT base URL normalization (#1376)

* fix: narrow legacy glmt base url normalization

* style: apply prettier formatting
This commit is contained in:
Kai (Tam Nhu) Tran
2026-05-23 21:45:02 -04:00
committed by GitHub
parent b0a754179c
commit 781c84b04b
2 changed files with 4 additions and 5 deletions
+1 -5
View File
@@ -25,11 +25,7 @@ export function isLegacyGlmtBaseUrl(baseUrl: string | null | undefined): boolean
return false;
}
return (
normalized === LEGACY_GLMT_BASE_URL ||
normalized.includes('/api/coding/paas/v4') ||
normalized.endsWith('/chat/completions')
);
return normalized === LEGACY_GLMT_BASE_URL || normalized.includes('/api/coding/paas/v4');
}
export function normalizeDeprecatedGlmtEnv(env: Record<string, string>): GlmtNormalizationResult {
@@ -20,6 +20,9 @@ describe('glmt deprecation helpers', () => {
expect(isLegacyGlmtBaseUrl('https://api.z.ai/api/coding/paas/v4/chat/completions/')).toBe(
true
);
expect(isLegacyGlmtBaseUrl('https://private.example.internal/v1/chat/completions')).toBe(
false
);
expect(isLegacyGlmtBaseUrl('https://api.z.ai/api/anthropic')).toBe(false);
});