yingclaw 2.1.5 → 2.1.6
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 +5 -0
- package/package.json +1 -1
package/lib/config.js
CHANGED
|
@@ -73,8 +73,13 @@ const PROVIDERS = {
|
|
|
73
73
|
name: '小米 MiMo',
|
|
74
74
|
baseUrl: 'https://api.xiaomimimo.com/anthropic',
|
|
75
75
|
modelsUrl: 'https://api.xiaomimimo.com/v1/models',
|
|
76
|
+
fastModel: 'mimo-v2-flash',
|
|
76
77
|
models: [
|
|
77
78
|
{ name: 'MiMo V2.5 Pro(旗舰)', value: 'mimo-v2.5-pro' },
|
|
79
|
+
{ name: 'MiMo V2.5(均衡)', value: 'mimo-v2.5' },
|
|
80
|
+
{ name: 'MiMo V2 Pro(强力)', value: 'mimo-v2-pro' },
|
|
81
|
+
{ name: 'MiMo V2 Omni(多模态)', value: 'mimo-v2-omni' },
|
|
82
|
+
{ name: 'MiMo V2 Flash(快速)', value: 'mimo-v2-flash' },
|
|
78
83
|
],
|
|
79
84
|
},
|
|
80
85
|
custom: {
|