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
| { "models": { "providers": { "qwen": { "baseUrl": "https://dashscope.aliyuncs.com/compatible-mode/v1", "api": "openai-completions", "apiKey": "你的DashScope API Key", "models": [ { "id": "qwen-plus", "name": "qwen-plus", "reasoning": false, "input": ["text"], "cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 }, "contextWindow": 131072, "maxTokens": 8192 } ] } } }, "agents": { "defaults": { "model": { "primary": "qwen/qwen-plus" } } }, "gateway": { "mode": "local", "auth": { "token": "mytoken---" } }, "env": { "vars": { "SEARXNG_URL": "http://127.0.0.1:8888" } }, "tools": { "web": { "search": { "enabled": false }, "fetch": { "enabled": false } } } }
|