mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-29 19:01:44 +00:00
38 lines
1.5 KiB
TypeScript
38 lines
1.5 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { resolveAgentModelPrimaryValue } from "../../src/config/model-input.js";
|
|
import { ZAI_CODING_CN_BASE_URL, ZAI_GLOBAL_BASE_URL } from "./model-definitions.js";
|
|
import { applyZaiConfig, applyZaiProviderConfig } from "./onboard.js";
|
|
|
|
describe("zai onboard", () => {
|
|
it("adds zai provider with correct settings", () => {
|
|
const cfg = applyZaiConfig({});
|
|
expect(cfg.models?.providers?.zai).toMatchObject({
|
|
baseUrl: ZAI_GLOBAL_BASE_URL,
|
|
api: "openai-completions",
|
|
});
|
|
const ids = cfg.models?.providers?.zai?.models?.map((m) => m.id);
|
|
expect(ids).toContain("glm-5");
|
|
expect(ids).toContain("glm-5-turbo");
|
|
expect(ids).toContain("glm-4.7");
|
|
expect(ids).toContain("glm-4.7-flash");
|
|
expect(ids).toContain("glm-4.7-flashx");
|
|
});
|
|
|
|
it("supports CN endpoint for supported coding models", () => {
|
|
for (const modelId of ["glm-4.7-flash", "glm-4.7-flashx"] as const) {
|
|
const cfg = applyZaiConfig({}, { endpoint: "coding-cn", modelId });
|
|
expect(cfg.models?.providers?.zai?.baseUrl).toBe(ZAI_CODING_CN_BASE_URL);
|
|
expect(resolveAgentModelPrimaryValue(cfg.agents?.defaults?.model)).toBe(`zai/${modelId}`);
|
|
}
|
|
});
|
|
|
|
it("does not overwrite existing primary model in provider-only mode", () => {
|
|
const cfg = applyZaiProviderConfig({
|
|
agents: { defaults: { model: { primary: "anthropic/claude-opus-4-5" } } },
|
|
});
|
|
expect(resolveAgentModelPrimaryValue(cfg.agents?.defaults?.model)).toBe(
|
|
"anthropic/claude-opus-4-5",
|
|
);
|
|
});
|
|
});
|