feat: Add DeepSeek provider and icon to the application

This commit is contained in:
n4ze3m
2025-01-19 12:33:26 +05:30
parent 7443d0ab6b
commit 6be1b2b0de
3 changed files with 27 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ import { OpenRouterIcon } from "../Icons/OpenRouter"
import { LLamaFile } from "../Icons/Llamafile"
import { GeminiIcon } from "../Icons/GeminiIcon"
import { MistarlIcon } from "../Icons/Mistral"
import { DeepSeekIcon } from "../Icons/DeepSeek"
export const ProviderIcons = ({
provider,
@@ -40,6 +41,8 @@ export const ProviderIcons = ({
return <GeminiIcon className={className} />
case "mistral":
return <MistarlIcon className={className} />
case "deepseek":
return <DeepSeekIcon className={className} />
default:
return <OllamaIcon className={className} />
}