- 取消追踪 552 个文件(运行态数据、密钥历史、实验/归档目录、 agentskills/easyagent/demo/android-webview-app 等不公开内容) - .gitignore 追加公开发布排除项与 cache/ 忽略 - 重写 README.md:mac 为主/开发中声明、web/host 双模式、Docker 镜像、 数据存储、settings.json/custom_models.json 配置说明 - .env.example 删除失效项(AGENT_API_* 等),标注推荐 settings.json - 新增 config/custom_models.json.example(Kimi-K3 蓝本 + DeepSeek 示例) - 修复 utils/perf_log.py 硬编码本机路径(改走 config.paths.LOGS_DIR)
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
{
|
||
"models": [
|
||
{
|
||
"model_name": "Kimi-K3",
|
||
"description": "Kimi K3,月之暗面最新旗舰模型",
|
||
"visible": true,
|
||
"url": "${API_BASE_KIMI}",
|
||
"apikey": "${API_KEY_KIMI}",
|
||
"multimodal": "image,video",
|
||
"reasoning_capability": "fast,thinking",
|
||
"reasoning_effort": true,
|
||
"context_window": 1048576,
|
||
"max_output_tokens": 64000,
|
||
"thinkmode_status": {
|
||
"type": "param_toggle",
|
||
"model_id": "k3",
|
||
"fast_extra_parameter": {
|
||
"thinking": {
|
||
"type": "disabled"
|
||
}
|
||
},
|
||
"thinking_extra_parameter": {
|
||
"thinking": {
|
||
"effort": "max"
|
||
}
|
||
}
|
||
},
|
||
"extra_parameter": {},
|
||
"model_description": "你是Kimi-K3,月之暗面最新旗舰模型,很贵,但也很强。"
|
||
},
|
||
{
|
||
"model_name": "deepseek-chat",
|
||
"description": "DeepSeek 官方 API(最小配置示例:仅 model_name / url / apikey / model_id 必填,其余字段均有默认值)",
|
||
"visible": true,
|
||
"url": "https://api.deepseek.com",
|
||
"apikey": "${API_KEY_DEEPSEEK}",
|
||
"thinkmode_status": {
|
||
"type": "param_toggle",
|
||
"model_id": "deepseek-chat"
|
||
}
|
||
}
|
||
]
|
||
}
|