mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 05:31:47 +00:00
8b9cac1 swapped alicode-intl to the DashScope compatible-mode endpoint to
fix #2591 for standard DashScope keys, but that broke Coding Plan keys
(sk-sp-...) which only work on coding-intl.dashscope.aliyuncs.com. The two
key types use two different hosts and are not interchangeable.
- alicode-intl: revert to coding-intl endpoint (Coding Plan keys)
- alims-intl: new provider for dashscope-intl/compatible-mode (standard keys)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
36 lines
1.6 KiB
JavaScript
36 lines
1.6 KiB
JavaScript
// #2591 — Alibaba Intl key types split across two hosts:
|
|
// - alicode-intl: Coding Plan keys (sk-sp-...) → coding-intl.dashscope.aliyuncs.com
|
|
// - alims-intl: standard DashScope API keys (sk-...) → dashscope-intl.aliyuncs.com/compatible-mode
|
|
// The two key types are NOT interchangeable across hosts. Split into two providers
|
|
// so each key type reaches its own host.
|
|
import { describe, it, expect } from "vitest";
|
|
import alicodeIntl from "../../open-sse/providers/registry/alicode-intl.js";
|
|
import alimsIntl from "../../open-sse/providers/registry/alims-intl.js";
|
|
|
|
describe("alicode-intl endpoint (Coding Plan keys)", () => {
|
|
it("routes to the coding-intl host for Coding Plan keys", () => {
|
|
expect(alicodeIntl.id).toBe("alicode-intl");
|
|
expect(alicodeIntl.transport.baseUrl).toBe(
|
|
"https://coding-intl.dashscope.aliyuncs.com/v1/chat/completions"
|
|
);
|
|
});
|
|
|
|
it("keeps the chat/completions path and preserveCacheControl quirk", () => {
|
|
expect(alicodeIntl.transport.baseUrl).toContain("/v1/chat/completions");
|
|
expect(alicodeIntl.transport.quirks.preserveCacheControl).toBe(true);
|
|
});
|
|
});
|
|
|
|
describe("alims-intl endpoint (standard DashScope keys)", () => {
|
|
it("routes to the compatible-mode DashScope endpoint for standard keys", () => {
|
|
expect(alimsIntl.id).toBe("alims-intl");
|
|
expect(alimsIntl.transport.baseUrl).toBe(
|
|
"https://dashscope-intl.aliyuncs.com/compatible-mode/v1/chat/completions"
|
|
);
|
|
});
|
|
|
|
it("does not use the coding-intl host that rejects standard keys", () => {
|
|
expect(alimsIntl.transport.baseUrl).not.toContain("coding-intl.dashscope.aliyuncs.com");
|
|
});
|
|
});
|