Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ All providers expose an Anthropic-compatible Messages API endpoint, confirmed wo
| `qwen` | `https://dashscope-intl.aliyuncs.com/apps/anthropic` | `qwen3.5-plus` |
| `minimax` | `https://api.minimax.io/anthropic` | `MiniMax-M2.7` |
| `doubao` | `https://ark.cn-beijing.volces.com/api/coding` | `doubao-seed-code-preview-latest`|
| `wanapi` | `https://api.wanapis.com` | `claude-sonnet-4-6` |
| `custom` | *(user-defined)* | *(user-defined)* |

### Z.AI Coding Plan
Expand Down
7 changes: 7 additions & 0 deletions ccs
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,13 @@ base_url=https://ark.cn-beijing.volces.com/api/coding
api_key=
model=doubao-seed-code-preview-latest

[wanapi]
base_url=https://api.wanapis.com
api_key=
model=claude-sonnet-4-6
opus_model=claude-opus-4-8
haiku_model=claude-haiku-4-5-20251001

[custom]
base_url=
api_key=
Expand Down
7 changes: 7 additions & 0 deletions config.template
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,13 @@ base_url=https://ark.cn-beijing.volces.com/api/coding
api_key=
model=doubao-seed-code-preview-latest

[wanapi]
base_url=https://api.wanapis.com
api_key=
model=claude-sonnet-4-6
opus_model=claude-opus-4-8
haiku_model=claude-haiku-4-5-20251001

[custom]
base_url=
api_key=
Expand Down
1 change: 1 addition & 0 deletions test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ out=$("$CCS" list)
assert_contains "list shows anthropic" "anthropic" "$out"
assert_contains "list shows zai" "zai" "$out"
assert_contains "list shows doubao" "doubao" "$out"
assert_contains "list shows wanapi" "wanapi" "$out"
assert_contains "list shows custom" "custom" "$out"
teardown

Expand Down