# modelscopemore **Repository Path**: opencode-plugin/modelscopemore ## Basic Information - **Project Name**: modelscopemore - **Description**: modelscope - 支持多key轮询 - **Primary Language**: TypeScript - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-06-20 - **Last Updated**: 2026-06-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # OpenCode ModelScope More Provider ModelScope 模型推理服务提供商插件,支持多 API Key 轮询。 ## 授权 1. 访问 [ModelScope Access Token 管理页](https://www.modelscope.cn/my/access/token) 创建 API Key 2. 在 OpenCode 中执行 `opencode connect modelscopemore` 输入你的 API Key(多 key 用逗号分隔) ## 可用模型 所有模型通过 `https://api-inference.modelscope.cn/v1` 端点访问,兼容 OpenAI Chat Completions 格式。 > 注:以下额度为每个模型每天的调用次数限制,用户总限额为 **2000 次/天**。 | 模型 Key | 模型 ID | 上下文 | 最大输出 | 日限额 | |----------|---------|--------|---------|--------| | `step-3.5-flash` | stepfun-ai/Step-3.5-Flash | 262,144 | 67,584 | **500** | | `step-3.7-flash` | stepfun-ai/Step-3.7-Flash | 262,144 | 67,584 | **50** | | `minimax-m2.5` | MiniMax/MiniMax-M2.5 | 204,800 | 131,072 | **50** | | `kimi-k2.5` | moonshotai/Kimi-K2.5 | 262,144 | 32,768 | **50** | | `deepseek-v4-flash` | deepseek-ai/DeepSeek-V4-Flash | 1,048,576 | 393,216 | **50** | | `glm-4.7-flash` | ZhipuAI/GLM-4.7-Flash | 204,800 | 131,072 | **100** | | `glm-5` | ZhipuAI/GLM-5 | 204,800 | 131,072 | **50** | | `nex-n2-pro` | nex-agi/Nex-N2-Pro | 262,144 | 131,072 | **100** | | `qwen3-coder-30b-a3b-instruct` | Qwen/Qwen3-Coder-30B-A3B-Instruct | 262,144 | 65,536 | **200** | | `qwen3.5-35b-a3b` | Qwen/Qwen3.5-35B-A3B | 262,144 | 65,536 | **100** | | `qwen3.5-122b-a10b` | Qwen/Qwen3.5-122B-A10B | 262,144 | 65,536 | **100** | | `qwen3.5-397b-a17b` | Qwen/Qwen3.5-397B-A17B | 262,144 | 65,536 | **100** | | `qwen3.5-27b` | Qwen/Qwen3.5-27B | 262,144 | 65,536 | **200** | | `qwen3-vl-235b-a22b-instruct` | Qwen/Qwen3-VL-235B-A22B-Instruct | 131,072 | 32,768 | **100** | ## 弃用模型 | 模型 Key | 模型 ID | 上下文 | 最大输出 | 日限额 | 弃用说明 | | ----------------------------- | ---------------------------------- | --------- | -------- | ------- | --------------------------------- | | `qwen3-30b-a3b-thinking` | Qwen/Qwen3-30B-A3B-Thinking-2507 | 131,072 | 65,536 | **200** | OLD | | `qwen3-next-80b-a3b-instruct` | Qwen/Qwen3-Next-80B-A3B-Instruct | 131,072 | 32,768 | **100** | OLD | | `qwen3-next-80b-a3b-thinking` | Qwen/Qwen3-Next-80B-A3B-Thinking | 131,072 | 32,768 | **100** | OLD | | `qwen3-235b-a22b` | Qwen/Qwen3-235B-A22B | 131,072 | 16384 | **50** | OLD | | `qwen3-235b-a22b-instruct` | Qwen/Qwen3-235B-A22B-Instruct-2507 | 131,072 | 32,768 | **50** | OLD | | `qwen3-235b-a22b-thinking` | Qwen/Qwen3-235B-A22B-Thinking-2507 | 131,072 | 32,768 | **50** | OLD | | `deepseek-v3.2` | deepseek-ai/DeepSeek-V3.2 | 131,072 | 65,536 | **20** | OLD | | `nex-n2-pro` | nex-agi/Nex-N2-Pro | 262,144 | 131,072 | **100** | 个人调用次数受全局影响 | | `glm-5.1` | ZhipuAI/GLM-5.1 | 204,800 | 131,072 | **50** | 个人调用次数受全局影响 | | `minimax-m3` | MiniMax/MiniMax-M3 | 1,048,576 | 262,144 | **200** | 报错:insufficient balance (1008) | | `internvl3.5-241b-a28b` | OpenGVLab/InternVL3_5-241B-A28B | 65,536 | 65,536 | **200** | 报错:Unauthorized | ## 调试 设置环境变量启用调试日志: ```bash # 方式一:通用 DEBUG export DEBUG=1 # 方式二:模型专用 export OPENCODE_MODELSCOPEMORE_DEBUG=1 ``` 日志文件位置:`~/.modelscopemore/debug.log` ## 构建 ```bash cd modelscopemore npm install npm run build ```