balibabu
commited on
Commit
·
b51ff09
1
Parent(s):
29b8637
fix: add icon to MiniMax and Mistral #1353 (#1367)
Browse files### What problem does this PR solve?
fix: add icon to MiniMax and Mistral #1353
### Type of change
- [x] Bug Fix (non-breaking change which fixes an issue)
web/src/assets/svg/llm/minimax.svg
ADDED
|
web/src/assets/svg/llm/mistral.svg
ADDED
|
web/src/pages/user-setting/setting-model/index.tsx
CHANGED
@@ -57,6 +57,8 @@ const IconMap = {
|
|
57 |
VolcEngine: 'volc_engine',
|
58 |
BaiChuan: 'baichuan',
|
59 |
Jina: 'jina',
|
|
|
|
|
60 |
};
|
61 |
|
62 |
const LlmIcon = ({ name }: { name: string }) => {
|
|
|
57 |
VolcEngine: 'volc_engine',
|
58 |
BaiChuan: 'baichuan',
|
59 |
Jina: 'jina',
|
60 |
+
MiniMax: 'minimax',
|
61 |
+
Mistral: 'mistral',
|
62 |
};
|
63 |
|
64 |
const LlmIcon = ({ name }: { name: string }) => {
|