mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-29 19:01:44 +00:00
119 lines
3.3 KiB
TypeScript
119 lines
3.3 KiB
TypeScript
import type { ModelDefinitionConfig } from "openclaw/plugin-sdk/provider-models";
|
|
|
|
export const MODELSTUDIO_BASE_URL = "https://coding-intl.dashscope.aliyuncs.com/v1";
|
|
export const MODELSTUDIO_GLOBAL_BASE_URL = MODELSTUDIO_BASE_URL;
|
|
export const MODELSTUDIO_CN_BASE_URL = "https://coding.dashscope.aliyuncs.com/v1";
|
|
export const MODELSTUDIO_STANDARD_CN_BASE_URL = "https://dashscope.aliyuncs.com/compatible-mode/v1";
|
|
export const MODELSTUDIO_STANDARD_GLOBAL_BASE_URL =
|
|
"https://dashscope-intl.aliyuncs.com/compatible-mode/v1";
|
|
|
|
export const MODELSTUDIO_DEFAULT_MODEL_ID = "qwen3.5-plus";
|
|
export const MODELSTUDIO_DEFAULT_COST = {
|
|
input: 0,
|
|
output: 0,
|
|
cacheRead: 0,
|
|
cacheWrite: 0,
|
|
};
|
|
export const MODELSTUDIO_DEFAULT_MODEL_REF = `modelstudio/${MODELSTUDIO_DEFAULT_MODEL_ID}`;
|
|
|
|
export const MODELSTUDIO_MODEL_CATALOG: ReadonlyArray<ModelDefinitionConfig> = [
|
|
{
|
|
id: "qwen3.5-plus",
|
|
name: "qwen3.5-plus",
|
|
reasoning: false,
|
|
input: ["text", "image"],
|
|
cost: MODELSTUDIO_DEFAULT_COST,
|
|
contextWindow: 1_000_000,
|
|
maxTokens: 65_536,
|
|
},
|
|
{
|
|
id: "qwen3-max-2026-01-23",
|
|
name: "qwen3-max-2026-01-23",
|
|
reasoning: false,
|
|
input: ["text"],
|
|
cost: MODELSTUDIO_DEFAULT_COST,
|
|
contextWindow: 262_144,
|
|
maxTokens: 65_536,
|
|
},
|
|
{
|
|
id: "qwen3-coder-next",
|
|
name: "qwen3-coder-next",
|
|
reasoning: false,
|
|
input: ["text"],
|
|
cost: MODELSTUDIO_DEFAULT_COST,
|
|
contextWindow: 262_144,
|
|
maxTokens: 65_536,
|
|
},
|
|
{
|
|
id: "qwen3-coder-plus",
|
|
name: "qwen3-coder-plus",
|
|
reasoning: false,
|
|
input: ["text"],
|
|
cost: MODELSTUDIO_DEFAULT_COST,
|
|
contextWindow: 1_000_000,
|
|
maxTokens: 65_536,
|
|
},
|
|
{
|
|
id: "MiniMax-M2.5",
|
|
name: "MiniMax-M2.5",
|
|
reasoning: true,
|
|
input: ["text"],
|
|
cost: MODELSTUDIO_DEFAULT_COST,
|
|
contextWindow: 1_000_000,
|
|
maxTokens: 65_536,
|
|
},
|
|
{
|
|
id: "glm-5",
|
|
name: "glm-5",
|
|
reasoning: false,
|
|
input: ["text"],
|
|
cost: MODELSTUDIO_DEFAULT_COST,
|
|
contextWindow: 202_752,
|
|
maxTokens: 16_384,
|
|
},
|
|
{
|
|
id: "glm-4.7",
|
|
name: "glm-4.7",
|
|
reasoning: false,
|
|
input: ["text"],
|
|
cost: MODELSTUDIO_DEFAULT_COST,
|
|
contextWindow: 202_752,
|
|
maxTokens: 16_384,
|
|
},
|
|
{
|
|
id: "kimi-k2.5",
|
|
name: "kimi-k2.5",
|
|
reasoning: false,
|
|
input: ["text", "image"],
|
|
cost: MODELSTUDIO_DEFAULT_COST,
|
|
contextWindow: 262_144,
|
|
maxTokens: 32_768,
|
|
},
|
|
];
|
|
|
|
export function buildModelStudioModelDefinition(params: {
|
|
id: string;
|
|
name?: string;
|
|
reasoning?: boolean;
|
|
input?: string[];
|
|
cost?: ModelDefinitionConfig["cost"];
|
|
contextWindow?: number;
|
|
maxTokens?: number;
|
|
}): ModelDefinitionConfig {
|
|
const catalog = MODELSTUDIO_MODEL_CATALOG.find((model) => model.id === params.id);
|
|
return {
|
|
id: params.id,
|
|
name: params.name ?? catalog?.name ?? params.id,
|
|
reasoning: params.reasoning ?? catalog?.reasoning ?? false,
|
|
input:
|
|
(params.input as ("text" | "image")[]) ?? (catalog?.input ? [...catalog.input] : ["text"]),
|
|
cost: params.cost ?? catalog?.cost ?? MODELSTUDIO_DEFAULT_COST,
|
|
contextWindow: params.contextWindow ?? catalog?.contextWindow ?? 262_144,
|
|
maxTokens: params.maxTokens ?? catalog?.maxTokens ?? 65_536,
|
|
};
|
|
}
|
|
|
|
export function buildModelStudioDefaultModelDefinition(): ModelDefinitionConfig {
|
|
return buildModelStudioModelDefinition({ id: MODELSTUDIO_DEFAULT_MODEL_ID });
|
|
}
|