yingclaw 2.5.27 → 2.5.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/config.js +2 -2
- package/lib/install.js +1 -0
- package/package.json +1 -1
package/lib/config.js
CHANGED
|
@@ -184,7 +184,7 @@ const PROVIDERS = {
|
|
|
184
184
|
};
|
|
185
185
|
|
|
186
186
|
const PREFERRED_MODEL_IDS = {
|
|
187
|
-
|
|
187
|
+
qwen: ['qwen3-max', 'qwen3-plus', 'qwen3.5-plus'],
|
|
188
188
|
minimax: ['MiniMax-M2.7', 'MiniMax-M2.7-Turbo', 'MiniMax-M2.5'],
|
|
189
189
|
glm: ['GLM-4.7', 'GLM-5.1', 'GLM-5-Turbo', 'GLM-4.5-Air'],
|
|
190
190
|
mimo: ['mimo-v2.5-pro', 'mimo-v2.5', 'mimo-v2-flash'],
|
|
@@ -250,7 +250,7 @@ function parseModelIdsResponse(providerKey, data) {
|
|
|
250
250
|
if (providerKey === 'bai') {
|
|
251
251
|
return normalizeModelIds(providerKey, ids.filter(id => !id.includes('/')));
|
|
252
252
|
}
|
|
253
|
-
|
|
253
|
+
return normalizeModelIds(providerKey, ids);
|
|
254
254
|
}
|
|
255
255
|
|
|
256
256
|
function normalizeAnthropicBaseUrl(baseUrl) {
|
package/lib/install.js
CHANGED