agent-Specialization/config/custom_models.json.example
JOJO bb420b0d04 chore(repo): 公开发布准备——取消追踪非源码文件并重写配置文档
- 取消追踪 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)
2026-07-25 00:44:15 +08:00

44 lines
1.2 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"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"
}
}
]
}