{ "$comment": [ "Delphi Review Configuration Template", "======================================", "Copy this file to .delphi-config.json and fill in your API keys.", "Place this file alongside SKILL.md in the delphi-review skill directory.", "At least 2 of the 3 experts should use different providers for cross-bias protection.", "", "Provider field: set provider to \"local\" to use the orchestrator model (mixed mode)." ], "active_profile": "default", "profiles": { "default": { "providers": { "deepseek": { "base_url": "https://api.deepseek.com/v1", "api_key": "YOUR_DEEPSEEK_API_KEY" }, "zhipu": { "base_url": "https://open.bigmodel.cn/api/paas/v4", "api_key": "YOUR_ZHIPU_API_KEY" }, "dashscope": { "base_url": "https://dashscope.aliyuncs.com/compatible-mode/v1", "api_key": "YOUR_DASHSCOPE_API_KEY" } }, "experts": { "architecture": { "provider": "deepseek", "model": "deepseek-chat" }, "technical": { "provider": "zhipu", "model": "glm-5.2" }, "feasibility": { "provider": "dashscope", "model": "qwen-3.8-plus" } } }, "starter": { "$comment": "Mixed mode: only 1 external API, others use orchestrator model", "providers": { "deepseek": { "base_url": "https://api.deepseek.com/v1", "api_key": "YOUR_DEEPSEEK_API_KEY" } }, "experts": { "architecture": { "provider": "deepseek", "model": "deepseek-chat" }, "technical": { "provider": "local" }, "feasibility": { "provider": "local" } } } }, "consensus": { "threshold_percent": 90, "max_review_rounds": 5 } }