mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-22 23:31:12 +02:00
Merge pull request #883 from octo-patch/feat/complete-minimax-provider-support
feat: add MiniMax LLM provider support
This commit is contained in:
commit
ee07ed8168
13 changed files with 123 additions and 2 deletions
|
|
@ -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":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue