返回 CodeWhale
provider_descriptors.json
根目录 / crates / config / assets / provider_descriptors.json
1 {
2 "schema": "codewhale.provider_descriptors.v1",
3 "note": "How to talk to a host. Model ids are not compiled here; live /v1/models and the Codewhale catalog are truth. default_model is a bootstrap hint only.",
4 "descriptors": [
5 {
6 "id": "sensenova",
7 "label": "SenseNova",
8 "wire": "openai-compatible",
9 "base_url": "https://token.sensenova.cn/v1",
10 "api_key_env": "SENSENOVA_API_KEY",
11 "default_model": "deepseek-v4-flash",
12 "discovery": "models_endpoint",
13 "aliases": ["sense-nova", "meituan-sensenova", "meituan-sensenova-cn"]
14 },
15 {
16 "id": "baseten",
17 "label": "Baseten",
18 "wire": "openai-compatible",
19 "base_url": "https://inference.baseten.co/v1",
20 "api_key_env": "BASETEN_API_KEY",
21 "default_model": "deepseek-ai/DeepSeek-V4-Pro",
22 "discovery": "models_endpoint",
23 "docs_url": "https://docs.baseten.co/inference/model-apis/overview",
24 "credential_url": "https://app.baseten.co/settings/api_keys",
25 "aliases": ["base-ten", "base_ten"]
26 },
27 {
28 "id": "groq",
29 "label": "Groq",
30 "wire": "openai-compatible",
31 "base_url": "https://api.groq.com/openai/v1",
32 "api_key_env": "GROQ_API_KEY",
33 "default_model": "llama-3.3-70b-versatile",
34 "discovery": "models_endpoint",
35 "docs_url": "https://console.groq.com/docs/quickstart",
36 "credential_url": "https://console.groq.com/keys"
37 },
38 {
39 "id": "cerebras",
40 "label": "Cerebras",
41 "wire": "openai-compatible",
42 "base_url": "https://api.cerebras.ai/v1",
43 "api_key_env": "CEREBRAS_API_KEY",
44 "default_model": "llama-3.3-70b",
45 "discovery": "models_endpoint",
46 "docs_url": "https://inference-docs.cerebras.ai/quickstart",
47 "credential_url": "https://cloud.cerebras.ai"
48 },
49 {
50 "id": "dashscope",
51 "label": "Alibaba Model Studio (DashScope)",
52 "wire": "openai-compatible",
53 "base_url": "https://dashscope-intl.aliyuncs.com/compatible-mode/v1",
54 "api_key_env": "DASHSCOPE_API_KEY",
55 "default_model": "qwen3.8-flash",
56 "discovery": "models_endpoint",
57 "docs_url": "https://www.alibabacloud.com/help/en/model-studio/getting-started/models",
58 "credential_url": "https://bailian.console.alibabacloud.com/",
59 "guidance": "International Model Studio compatible-mode endpoint (OpenAI Chat Completions + GET /v1/models). Live /v1/models is the model authority: Qwen 3.8 Flash and the dated 0901 release arrive through the catalog, never a hard-coded id. Store DASHSCOPE_API_KEY, not a raw key.",
60 "aliases": ["dashscope-intl", "alibaba-model-studio", "model-studio", "qwen"]
61 },
62 {
63 "id": "command-code",
64 "label": "Command Code",
65 "wire": "openai-compatible",
66 "base_url": "https://api.commandcode.ai/provider/v1",
67 "api_key_env": "COMMAND_CODE_API_KEY",
68 "default_model": "deepseek/deepseek-v4-flash",
69 "discovery": "models_endpoint",
70 "docs_url": "https://commandcode.ai/docs/provider",
71 "credential_url": "https://commandcode.ai/provider",
72 "guidance": "Published Provider API (OpenAI Chat Completions + GET /v1/models). Do not import the Command Code CLI login. Store COMMAND_CODE_API_KEY, not a raw key.",
73 "aliases": ["commandcode", "cmd-code"]
74 }
75 ]
76 }
77
77 lines JSON