Files
zclaw_openfang/plugins/zclaw-chinese-models/openclaw.plugin.json
iven 978dc5cdd8
Some checks failed
CI / Lint & TypeCheck (push) Has been cancelled
CI / Unit Tests (push) Has been cancelled
CI / Build Frontend (push) Has been cancelled
CI / Rust Check (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
CI / E2E Tests (push) Has been cancelled
fix(安全): 修复HTML导出中的XSS漏洞并清理调试日志
refactor(日志): 替换console.log为tracing日志系统
style(代码): 移除未使用的代码和依赖项

feat(测试): 添加端到端测试文档和CI工作流
docs(变更日志): 更新CHANGELOG.md记录0.1.0版本变更

perf(构建): 更新依赖版本并优化CI流程
2026-03-26 19:49:03 +08:00

45 lines
2.2 KiB
JSON

{
"id": "zclaw-chinese-models",
"name": "ZCLAW Chinese Models",
"version": "0.1.0",
"description": "Chinese AI model providers for ZCLAW: Zhipu GLM, Qwen, Kimi, MiniMax, DeepSeek, Baidu ERNIE, iFlytek Spark",
"author": "ZCLAW",
"entry": "index.ts",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"zhipuApiKey": { "type": "string" },
"zhipuBaseUrl": { "type": "string" },
"qwenApiKey": { "type": "string" },
"qwenBaseUrl": { "type": "string" },
"kimiApiKey": { "type": "string" },
"kimiBaseUrl": { "type": "string" },
"minimaxApiKey": { "type": "string" },
"minimaxBaseUrl": { "type": "string" },
"deepseekApiKey": { "type": "string" },
"deepseekBaseUrl": { "type": "string" },
"baiduApiKey": { "type": "string" },
"baiduBaseUrl": { "type": "string" },
"sparkApiKey": { "type": "string" },
"sparkBaseUrl": { "type": "string" }
}
},
"uiHints": {
"zhipuApiKey": { "label": "智谱 API Key", "sensitive": true },
"zhipuBaseUrl": { "label": "智谱 Base URL", "placeholder": "https://open.bigmodel.cn/api/paas/v4" },
"qwenApiKey": { "label": "通义千问 API Key", "sensitive": true },
"qwenBaseUrl": { "label": "通义千问 Base URL", "placeholder": "https://dashscope.aliyuncs.com/compatible-mode/v1" },
"kimiApiKey": { "label": "Kimi API Key", "sensitive": true },
"kimiBaseUrl": { "label": "Kimi Base URL", "placeholder": "https://api.moonshot.cn/v1" },
"minimaxApiKey": { "label": "MiniMax API Key", "sensitive": true },
"minimaxBaseUrl": { "label": "MiniMax Base URL", "placeholder": "https://api.minimax.chat/v1" },
"deepseekApiKey": { "label": "DeepSeek API Key", "sensitive": true },
"deepseekBaseUrl": { "label": "DeepSeek Base URL", "placeholder": "https://api.deepseek.com/v1" },
"baiduApiKey": { "label": "百度 API Key", "sensitive": true },
"baiduBaseUrl": { "label": "百度 Base URL", "placeholder": "https://aip.baidubce.com/rpc/2.0/ai_custom/v1/wenxinworkshop/chat" },
"sparkApiKey": { "label": "讯飞星火 API Key", "sensitive": true },
"sparkBaseUrl": { "label": "讯飞星火 Base URL", "placeholder": "https://spark-api-open.xf-yun.com/v1" }
}
}