mirror of
https://github.com/tiennm99/ccs.git
synced 2026-07-16 02:11:28 +00:00
fix: narrow legacy GLMT base URL normalization (#1376)
* fix: narrow legacy glmt base url normalization * style: apply prettier formatting
This commit is contained in:
@@ -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);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user