feat: adicionar suporte a modelos MiniMax (2.7 e 3.0)

This commit is contained in:
2026-06-22 20:34:35 +00:00
parent 9f054a777f
commit 176f064c16
4 changed files with 88 additions and 1 deletions
+2
View File
@@ -67,6 +67,7 @@ export const ApiKeySetup: React.FC<ApiKeySetupProps> = ({ onKeySave }) => {
case 'azure': return 'https://portal.azure.com/#view/Microsoft_AAD_IAM/ActiveDirectoryMenuBlade/RegisteredApps';
case 'ollama': return 'https://ollama.com/download';
case 'openrouter': return 'https://openrouter.ai/keys';
case 'minimax': return 'https://platform.minimaxi.com/user-center/basic-information/interface-key';
default: return '#';
}
};
@@ -79,6 +80,7 @@ export const ApiKeySetup: React.FC<ApiKeySetupProps> = ({ onKeySave }) => {
case 'azure': return 'Azure OpenAI';
case 'ollama': return 'Ollama (Local)';
case 'openrouter': return 'OpenRouter';
case 'minimax': return 'MiniMax';
default: return 'API';
}
};