mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-16 20:40:45 +00:00
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import { completeSimple, getModel } from "@mariozechner/pi-ai";
|
|
import { describe, expect, it } from "vitest";
|
|
import { isTruthyEnvValue } from "../infra/env.js";
|
|
import {
|
|
createSingleUserPromptMessage,
|
|
extractNonEmptyAssistantText,
|
|
} from "./live-test-helpers.js";
|
|
|
|
const ZAI_KEY = process.env.ZAI_API_KEY ?? process.env.Z_AI_API_KEY ?? "";
|
|
const LIVE = isTruthyEnvValue(process.env.ZAI_LIVE_TEST) || isTruthyEnvValue(process.env.LIVE);
|
|
|
|
const describeLive = LIVE && ZAI_KEY ? describe : describe.skip;
|
|
|
|
async function expectModelReturnsAssistantText(modelId: "glm-5" | "glm-4.7") {
|
|
const model = getModel("zai", modelId);
|
|
const res = await completeSimple(
|
|
model,
|
|
{
|
|
messages: createSingleUserPromptMessage(),
|
|
},
|
|
{ apiKey: ZAI_KEY, maxTokens: 64 },
|
|
);
|
|
const text = extractNonEmptyAssistantText(res.content);
|
|
expect(text.length).toBeGreaterThan(0);
|
|
}
|
|
|
|
describeLive("zai live", () => {
|
|
it("returns assistant text", async () => {
|
|
await expectModelReturnsAssistantText("glm-5");
|
|
}, 20000);
|
|
|
|
it("glm-4.7 returns assistant text", async () => {
|
|
await expectModelReturnsAssistantText("glm-4.7");
|
|
}, 20000);
|
|
});
|