This commit is contained in:
musistudio
2025-08-03 08:18:08 +08:00
commit b8e0e99e5c
12 changed files with 244 additions and 0 deletions

19
providers/dashscope.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "dashscope",
"api_base_url": "https://dashscope.aliyuncs.com/compatible-mode/v1/chat/completions",
"api_key": "",
"models": ["qwen3-coder-plus"],
"transformer": {
"use": [
[
"maxtoken",
{
"max_tokens": 65536
}
]
],
"qwen3-coder-plus": {
"use": ["enhancetool"]
}
}
}

12
providers/deepseek.json Normal file
View File

@@ -0,0 +1,12 @@
{
"name": "deepseek",
"api_base_url": "https://api.deepseek.com/chat/completions",
"api_key": "",
"models": ["deepseek-chat", "deepseek-reasoner"],
"transformer": {
"use": ["deepseek"],
"deepseek-chat": {
"use": ["tooluse"]
}
}
}

9
providers/gemini.json Normal file
View File

@@ -0,0 +1,9 @@
{
"name": "gemini",
"api_base_url": "https://generativelanguage.googleapis.com/v1beta/models/",
"api_key": "",
"models": ["gemini-2.5-flash", "gemini-2.5-pro"],
"transformer": {
"use": ["gemini"]
}
}

26
providers/modelscope.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "modelscope",
"api_base_url": "https://api-inference.modelscope.cn/v1/chat/completions",
"api_key": "",
"models": [
"Qwen/Qwen3-Coder-480B-A35B-Instruct",
"Qwen/Qwen3-235B-A22B-Thinking-2507",
"ZhipuAI/GLM-4.5"
],
"transformer": {
"use": [
[
"maxtoken",
{
"max_tokens": 65536
}
]
],
"Qwen/Qwen3-Coder-480B-A35B-Instruct": {
"use": ["enhancetool"]
},
"Qwen/Qwen3-235B-A22B-Thinking-2507": {
"use": ["reasoning"]
}
}
}

14
providers/openrouter.json Normal file
View File

@@ -0,0 +1,14 @@
{
"name": "openrouter",
"api_base_url": "https://openrouter.ai/api/v1/chat/completions",
"api_key": "",
"models": [
"google/gemini-2.5-pro-preview",
"anthropic/claude-sonnet-4",
"anthropic/claude-3.5-sonnet",
"anthropic/claude-3.7-sonnet:thinking"
],
"transformer": {
"use": ["openrouter"]
}
}

View File

@@ -0,0 +1,16 @@
{
"name": "siliconflow",
"api_base_url": "https://api.siliconflow.cn/v1/chat/completions",
"api_key": "sk-xxx",
"models": ["moonshotai/Kimi-K2-Instruct"],
"transformer": {
"use": [
[
"maxtoken",
{
"max_tokens": 16384
}
]
]
}
}

View File

@@ -0,0 +1,9 @@
{
"name": "volcengine",
"api_base_url": "https://ark.cn-beijing.volces.com/api/v3/chat/completions",
"api_key": "sk-xxx",
"models": ["deepseek-v3-250324", "deepseek-r1-250528"],
"transformer": {
"use": ["deepseek"]
}
}