-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathproviders.json.example
More file actions
75 lines (75 loc) · 3.02 KB
/
providers.json.example
File metadata and controls
75 lines (75 loc) · 3.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"common": {
"http_proxy": "http://proxy.example.com:8080/",
"https_proxy": "http://proxy.example.com:8080/",
"no_proxy": "localhost,127.0.0.1,192.168.1.100",
"cache_ttl_seconds": 86400
},
"endpoints": {
"litellm": {
"endpoint": "https://192.168.1.100:4142",
"api_key_env": "API_KEY_LITELLM",
"list_models_cmd": "python -m code_assistant_manager.v1_models",
"keep_proxy_config": false,
"use_proxy": false,
"description": "Litellm support OpenAI compatible API calls",
"supported_client": "claude,copilot,droid,codebuddy,codex,qwen,crush,iflow"
},
"copilot-api": {
"endpoint": "https://192.168.1.100:5000",
"api_key_env": "API_KEY_COPILOT",
"list_models_cmd": "python -m code_assistant_manager.v1_models",
"supported_client": "claude,copilot,droid,codebuddy,codex,qwen,neovate,crush",
"description": "Github Copilot API Proxy"
},
"openai-compatible:dashscope-qwen3-models": {
"endpoint": "https://dashscope.aliyuncs.com/compatible-mode/v1",
"api_key_env": "API_KEY_QWEN",
"list_of_models": ["qwen3-max", "qwen3-coder-plus"],
"use_proxy": false,
"description": "Alibaba Dashscope Endpoint - using static model list",
"supported_client": "qwen,droid,iflow,crush"
},
"azure-openai:east2": {
"endpoint": "https://azure-openai-gpt-o1-east2.openai.azure.com/openai/v1",
"api_key_env": "API_KEY_AZURE_OPENAI",
"list_of_models": ["model-router"],
"use_proxy": false,
"description": "Azure Openai Endpoint - using static model list",
"supported_client": "codex"
},
"azure-openai:zhujian0003-1688-resource": {
"endpoint": "https://zhujian0003-1688-resource.services.ai.azure.com/openai/v1/",
"api_key_env": "zhujian0003_1688_resource_API_KEY_AZURE_OPENAI",
"list_of_models": ["grok-3"],
"use_proxy": false,
"description": "Azure Openai Endpoint - using static model list",
"supported_client": "codex"
},
"qwen-claude-proxy:dashscope-qwen3-coder-plus": {
"endpoint": "https://dashscope.aliyuncs.com/api/v2/apps/claude-code-proxy",
"api_key_env": "API_KEY_QWEN",
"list_of_models": ["qwen3-coder-plus"],
"use_proxy": false,
"description": "Alibaba Dashscope Endpoint Claude Proxy - using static model list",
"supported_client": "claude"
},
"blackbox-official": {
"endpoint": "https://api.blackbox.ai",
"api_key_env": "BLACKBOX_API_KEY",
"list_of_models": [
"blackboxai/anthropic/claude-sonnet-4.5",
"blackboxai/anthropic/claude-opus-4.5",
"blackboxai/anthropic/claude-sonnet-4",
"blackboxai/anthropic/claude-opus-4",
"blackboxai/google/gemini-2.5-flash",
"blackboxai/meta-llama/llama-3.3-70b-instruct",
"blackboxai/openai/gpt-4o",
"blackboxai/x-ai/grok-code-fast-1:free"
],
"use_proxy": false,
"description": "Blackbox AI Official API - using static model list",
"supported_client": "blackbox"
}
}
}