| { |
| "_comment": "DS2API 配置文件示例 - 复制为 config.json 使用", |
| "_doc": "详细文档: https://github.com/CJackHwang/ds2api", |
| "keys": [ |
| "your-api-key-1", |
| "your-api-key-2" |
| ], |
| "api_keys": [ |
| { |
| "key": "your-api-key-1", |
| "name": "主 API Key", |
| "remark": "给 OpenAI 客户端使用" |
| }, |
| { |
| "key": "your-api-key-2", |
| "name": "备用 API Key", |
| "remark": "压测或临时调试" |
| } |
| ], |
| "accounts": [ |
| { |
| "_comment": "邮箱登录方式", |
| "name": "主账号", |
| "remark": "优先用于生产流量", |
| "email": "example1@example.com", |
| "password": "your-password-1" |
| }, |
| { |
| "_comment": "邮箱登录方式 - 账号2", |
| "name": "备用账号", |
| "email": "example2@example.com", |
| "password": "your-password-2" |
| }, |
| { |
| "_comment": "手机号登录方式(中国大陆)", |
| "mobile": "12345678901", |
| "password": "your-password-3" |
| } |
| ], |
| "model_aliases": { |
| "gpt-4o": "deepseek-chat", |
| "gpt-5-codex": "deepseek-reasoner", |
| "o3": "deepseek-reasoner" |
| }, |
| "compat": { |
| "wide_input_strict_output": true, |
| "strip_reference_markers": true |
| }, |
| "responses": { |
| "store_ttl_seconds": 900 |
| }, |
| "history_split": { |
| "enabled": true, |
| "trigger_after_turns": 1 |
| }, |
| "embeddings": { |
| "provider": "deterministic" |
| }, |
| "claude_mapping": { |
| "fast": "deepseek-chat", |
| "slow": "deepseek-reasoner" |
| }, |
| "admin": { |
| "jwt_expire_hours": 24 |
| }, |
| "runtime": { |
| "account_max_inflight": 2, |
| "account_max_queue": 0, |
| "global_max_inflight": 0, |
| "token_refresh_interval_hours": 6 |
| }, |
| "auto_delete": { |
| "mode": "none" |
| } |
| } |
|
|