feat(opencode): configure vllm-qwen38 provider for local Qwen3.8-27B

This commit is contained in:
Claude
2026-08-24 22:49:50 +00:00
parent 317942e15b
commit 51b81def98
6 changed files with 39 additions and 22 deletions
+18 -5
View File
@@ -21,19 +21,32 @@
}
}
},
"local": {
"vllm-qwen38": {
"npm": "@ai-sdk/openai-compatible",
"name": "Local AI workstation (qwen3.8-27b)",
"name": "Qwen3.8-27B vLLM (RTX 3090, MTP spec-decode)",
"options": {
"baseURL": "http://192.168.1.79:18020/v1",
"apiKey": "PLACEHOLDER_REPLACED_AT_RUNTIME"
"apiKey": "PLACEHOLDER_REPLACED_AT_RUNTIME",
"timeout": 300000,
"chunkTimeout": 30000
},
"models": {
"qwen3.8-27b": {
"name": "Qwen 3.8 27B (local)",
"name": "Qwen3.8-27B (vLLM, MTP, 150k ctx)",
"tools": true,
"thinking": true,
"attachments": false,
"limit": {
"context": 57344,
"context": 150000,
"output": 8192
},
"options": {
"temperature": 0.3,
"topP": 0.8,
"topK": 20,
"repetitionPenalty": 1.05,
"frequencyPenalty": 0,
"presencePenalty": 0
}
}
}