-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathicons.ts
More file actions
45 lines (43 loc) · 865 Bytes
/
icons.ts
File metadata and controls
45 lines (43 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import {
AzurePng,
BinancePng,
BlockchainPng,
CoinbasePng,
DashScopePng,
DeepSeekPng,
GatePng,
GooglePng,
HyperliquidPng,
MexcPng,
MiniMaxPng,
OkxPng,
OllamaPng,
OpenAiCompatiblePng,
OpenAiPng,
OpenRouterPng,
SiliconFlowPng,
ValueCellAgentPng,
} from "@/assets/png";
export const MODEL_PROVIDER_ICONS = {
openrouter: OpenRouterPng,
siliconflow: SiliconFlowPng,
openai: OpenAiPng,
"openai-compatible": OpenAiCompatiblePng,
deepseek: DeepSeekPng,
google: GooglePng,
azure: AzurePng,
dashscope: DashScopePng,
minimax: MiniMaxPng,
ollama: OllamaPng,
};
export const EXCHANGE_ICONS = {
binance: BinancePng,
blockchaincom: BlockchainPng,
coinbase: CoinbasePng,
coinbaseexchange: CoinbasePng,
gate: GatePng,
hyperliquid: HyperliquidPng,
mexc: MexcPng,
okx: OkxPng,
virtual: ValueCellAgentPng,
};