mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-24 16:32:29 +00:00
155 lines
4.3 KiB
TypeScript
155 lines
4.3 KiB
TypeScript
import type { ModelDefinitionConfig } from "openclaw/plugin-sdk/provider-models";
|
|
|
|
export const ZAI_CODING_GLOBAL_BASE_URL = "https://api.z.ai/api/coding/paas/v4";
|
|
export const ZAI_CODING_CN_BASE_URL = "https://open.bigmodel.cn/api/coding/paas/v4";
|
|
export const ZAI_GLOBAL_BASE_URL = "https://api.z.ai/api/paas/v4";
|
|
export const ZAI_CN_BASE_URL = "https://open.bigmodel.cn/api/paas/v4";
|
|
export const ZAI_DEFAULT_MODEL_ID = "glm-5";
|
|
export const ZAI_DEFAULT_MODEL_REF = `zai/${ZAI_DEFAULT_MODEL_ID}`;
|
|
|
|
type ZaiCatalogEntry = {
|
|
name: string;
|
|
reasoning: boolean;
|
|
input: ModelDefinitionConfig["input"];
|
|
contextWindow: number;
|
|
maxTokens: number;
|
|
cost: ModelDefinitionConfig["cost"];
|
|
};
|
|
|
|
export const ZAI_DEFAULT_COST = {
|
|
input: 1,
|
|
output: 3.2,
|
|
cacheRead: 0.2,
|
|
cacheWrite: 0,
|
|
} satisfies ModelDefinitionConfig["cost"];
|
|
|
|
const ZAI_MODEL_CATALOG = {
|
|
"glm-5": {
|
|
name: "GLM-5",
|
|
reasoning: true,
|
|
input: ["text"],
|
|
contextWindow: 202800,
|
|
maxTokens: 131100,
|
|
cost: ZAI_DEFAULT_COST,
|
|
},
|
|
"glm-5-turbo": {
|
|
name: "GLM-5 Turbo",
|
|
reasoning: true,
|
|
input: ["text"],
|
|
contextWindow: 202800,
|
|
maxTokens: 131100,
|
|
cost: { input: 1.2, output: 4, cacheRead: 0.24, cacheWrite: 0 },
|
|
},
|
|
"glm-4.7": {
|
|
name: "GLM-4.7",
|
|
reasoning: true,
|
|
input: ["text"],
|
|
contextWindow: 204800,
|
|
maxTokens: 131072,
|
|
cost: { input: 0.6, output: 2.2, cacheRead: 0.11, cacheWrite: 0 },
|
|
},
|
|
"glm-4.7-flash": {
|
|
name: "GLM-4.7 Flash",
|
|
reasoning: true,
|
|
input: ["text"],
|
|
contextWindow: 200000,
|
|
maxTokens: 131072,
|
|
cost: { input: 0.07, output: 0.4, cacheRead: 0, cacheWrite: 0 },
|
|
},
|
|
"glm-4.7-flashx": {
|
|
name: "GLM-4.7 FlashX",
|
|
reasoning: true,
|
|
input: ["text"],
|
|
contextWindow: 200000,
|
|
maxTokens: 128000,
|
|
cost: { input: 0.06, output: 0.4, cacheRead: 0.01, cacheWrite: 0 },
|
|
},
|
|
"glm-4.6": {
|
|
name: "GLM-4.6",
|
|
reasoning: true,
|
|
input: ["text"],
|
|
contextWindow: 204800,
|
|
maxTokens: 131072,
|
|
cost: { input: 0.6, output: 2.2, cacheRead: 0.11, cacheWrite: 0 },
|
|
},
|
|
"glm-4.6v": {
|
|
name: "GLM-4.6V",
|
|
reasoning: true,
|
|
input: ["text", "image"],
|
|
contextWindow: 128000,
|
|
maxTokens: 32768,
|
|
cost: { input: 0.3, output: 0.9, cacheRead: 0, cacheWrite: 0 },
|
|
},
|
|
"glm-4.5": {
|
|
name: "GLM-4.5",
|
|
reasoning: true,
|
|
input: ["text"],
|
|
contextWindow: 131072,
|
|
maxTokens: 98304,
|
|
cost: { input: 0.6, output: 2.2, cacheRead: 0.11, cacheWrite: 0 },
|
|
},
|
|
"glm-4.5-air": {
|
|
name: "GLM-4.5 Air",
|
|
reasoning: true,
|
|
input: ["text"],
|
|
contextWindow: 131072,
|
|
maxTokens: 98304,
|
|
cost: { input: 0.2, output: 1.1, cacheRead: 0.03, cacheWrite: 0 },
|
|
},
|
|
"glm-4.5-flash": {
|
|
name: "GLM-4.5 Flash",
|
|
reasoning: true,
|
|
input: ["text"],
|
|
contextWindow: 131072,
|
|
maxTokens: 98304,
|
|
cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
|
|
},
|
|
"glm-4.5v": {
|
|
name: "GLM-4.5V",
|
|
reasoning: true,
|
|
input: ["text", "image"],
|
|
contextWindow: 64000,
|
|
maxTokens: 16384,
|
|
cost: { input: 0.6, output: 1.8, cacheRead: 0, cacheWrite: 0 },
|
|
},
|
|
} as const satisfies Record<string, ZaiCatalogEntry>;
|
|
|
|
type ZaiCatalogId = keyof typeof ZAI_MODEL_CATALOG;
|
|
|
|
export function resolveZaiBaseUrl(endpoint?: string): string {
|
|
switch (endpoint) {
|
|
case "coding-cn":
|
|
return ZAI_CODING_CN_BASE_URL;
|
|
case "global":
|
|
return ZAI_GLOBAL_BASE_URL;
|
|
case "cn":
|
|
return ZAI_CN_BASE_URL;
|
|
case "coding-global":
|
|
return ZAI_CODING_GLOBAL_BASE_URL;
|
|
default:
|
|
return ZAI_GLOBAL_BASE_URL;
|
|
}
|
|
}
|
|
|
|
export function buildZaiModelDefinition(params: {
|
|
id: string;
|
|
name?: string;
|
|
reasoning?: boolean;
|
|
input?: ModelDefinitionConfig["input"];
|
|
cost?: ModelDefinitionConfig["cost"];
|
|
contextWindow?: number;
|
|
maxTokens?: number;
|
|
}): ModelDefinitionConfig {
|
|
const catalog = ZAI_MODEL_CATALOG[params.id as ZaiCatalogId];
|
|
return {
|
|
id: params.id,
|
|
name: params.name ?? catalog?.name ?? `GLM ${params.id}`,
|
|
reasoning: params.reasoning ?? catalog?.reasoning ?? true,
|
|
input:
|
|
params.input ?? (catalog?.input ? ([...catalog.input] as ("text" | "image")[]) : ["text"]),
|
|
cost: params.cost ?? catalog?.cost ?? ZAI_DEFAULT_COST,
|
|
contextWindow: params.contextWindow ?? catalog?.contextWindow ?? 202800,
|
|
maxTokens: params.maxTokens ?? catalog?.maxTokens ?? 131100,
|
|
};
|
|
}
|