Merge pull request #883 from octo-patch/feat/complete-minimax-provider-support

feat: add MiniMax LLM provider support
This commit is contained in:
Rohan Verma 2026-03-15 00:45:16 -07:00 committed by GitHub
commit ee07ed8168
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 123 additions and 2 deletions

View file

@ -15,6 +15,7 @@ import {
GeminiIcon,
GroqIcon,
HuggingFaceIcon,
MiniMaxIcon,
MistralIcon,
MoonshotIcon,
NscaleIcon,
@ -85,6 +86,8 @@ export function getProviderIcon(
return <GroqIcon className={cn(className)} />;
case "HUGGINGFACE":
return <HuggingFaceIcon className={cn(className)} />;
case "MINIMAX":
return <MiniMaxIcon className={cn(className)} />;
case "MISTRAL":
return <MistralIcon className={cn(className)} />;
case "MOONSHOT":