mirror of
https://github.com/decolua/9router.git
synced 2026-05-08 12:01:28 +00:00
Fix/minimax cn cant use in combo (#107)
* fix(provider): correct minimax-cn to alias mapping Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai> (cherry picked from commit 315c6fc91b06584b101a4078affef3bb3b0f7001) * fix(provider): add minimax-cn model list to PROVIDER_MODELS (cherry picked from commit 15bc2d070306f48da4887a6286ec2a6007300705) --------- Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
@@ -150,6 +150,9 @@ export const PROVIDER_MODELS = {
|
||||
minimax: [
|
||||
{ id: "MiniMax-M2.1", name: "MiniMax M2.1" },
|
||||
],
|
||||
"minimax-cn": [
|
||||
{ id: "MiniMax-M2.1", name: "MiniMax M2.1" },
|
||||
],
|
||||
};
|
||||
|
||||
// Helper functions
|
||||
@@ -202,7 +205,7 @@ export const PROVIDER_ID_TO_ALIAS = {
|
||||
"glm-cn": "glm-cn",
|
||||
kimi: "kimi",
|
||||
minimax: "minimax",
|
||||
"minimax-cn": "minimax",
|
||||
"minimax-cn": "minimax-cn",
|
||||
};
|
||||
|
||||
export function getModelsByProviderId(providerId) {
|
||||
|
||||
Reference in New Issue
Block a user