@lobehub/icons 1.93.0 → 1.94.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +58 -55
- package/es/Coqui/components/Avatar.d.ts +5 -0
- package/es/Coqui/components/Avatar.js +28 -0
- package/es/Coqui/components/Color.d.ts +3 -0
- package/es/Coqui/components/Color.js +43 -0
- package/es/Coqui/components/Combine.d.ts +7 -0
- package/es/Coqui/components/Combine.js +32 -0
- package/es/Coqui/components/Mono.d.ts +3 -0
- package/es/Coqui/components/Mono.js +43 -0
- package/es/Coqui/components/Text.d.ts +3 -0
- package/es/Coqui/components/Text.js +45 -0
- package/es/Coqui/index.d.ts +15 -0
- package/es/Coqui/index.js +16 -0
- package/es/Coqui/style.d.ts +4 -0
- package/es/Coqui/style.js +4 -0
- package/es/Xinference/components/Avatar.d.ts +5 -0
- package/es/Xinference/components/Avatar.js +30 -0
- package/es/Xinference/components/Color.d.ts +3 -0
- package/es/Xinference/components/Color.js +101 -0
- package/es/Xinference/components/Combine.d.ts +7 -0
- package/es/Xinference/components/Combine.js +32 -0
- package/es/Xinference/components/Mono.d.ts +3 -0
- package/es/Xinference/components/Mono.js +45 -0
- package/es/Xinference/components/Text.d.ts +3 -0
- package/es/Xinference/components/Text.js +40 -0
- package/es/Xinference/index.d.ts +15 -0
- package/es/Xinference/index.js +16 -0
- package/es/Xinference/style.d.ts +4 -0
- package/es/Xinference/style.js +4 -0
- package/es/features/modelConfig.js +3 -3
- package/es/features/providerConfig.js +8 -1
- package/es/features/providerEnum.d.ts +1 -0
- package/es/features/providerEnum.js +1 -0
- package/es/icons.d.ts +2 -0
- package/es/icons.js +2 -0
- package/es/toc.js +36 -0
- package/package.json +2 -2
@@ -0,0 +1,15 @@
|
|
1
|
+
import Avatar from './components/Avatar';
|
2
|
+
import Color from './components/Color';
|
3
|
+
import Combine from './components/Combine';
|
4
|
+
import Mono from './components/Mono';
|
5
|
+
import Text from './components/Text';
|
6
|
+
export type CompoundedIcon = typeof Mono & {
|
7
|
+
Avatar: typeof Avatar;
|
8
|
+
Color: typeof Color;
|
9
|
+
Combine: typeof Combine;
|
10
|
+
Text: typeof Text;
|
11
|
+
colorPrimary: string;
|
12
|
+
title: string;
|
13
|
+
};
|
14
|
+
declare const Icons: CompoundedIcon;
|
15
|
+
export default Icons;
|
@@ -0,0 +1,16 @@
|
|
1
|
+
'use client';
|
2
|
+
|
3
|
+
import Avatar from "./components/Avatar";
|
4
|
+
import Color from "./components/Color";
|
5
|
+
import Combine from "./components/Combine";
|
6
|
+
import Mono from "./components/Mono";
|
7
|
+
import Text from "./components/Text";
|
8
|
+
import { COLOR_PRIMARY, TITLE } from "./style";
|
9
|
+
var Icons = Mono;
|
10
|
+
Icons.Color = Color;
|
11
|
+
Icons.Text = Text;
|
12
|
+
Icons.Combine = Combine;
|
13
|
+
Icons.Avatar = Avatar;
|
14
|
+
Icons.colorPrimary = COLOR_PRIMARY;
|
15
|
+
Icons.title = TITLE;
|
16
|
+
export default Icons;
|
@@ -4,7 +4,6 @@ import Ai360 from "../Ai360";
|
|
4
4
|
import AiMass from "../AiMass";
|
5
5
|
import Aws from "../Aws";
|
6
6
|
import Aya from "../Aya";
|
7
|
-
import Azure from "../Azure";
|
8
7
|
import Baichuan from "../Baichuan";
|
9
8
|
import ByteDance from "../ByteDance";
|
10
9
|
import ChatGLM from "../ChatGLM";
|
@@ -28,6 +27,7 @@ import InternLM from "../InternLM";
|
|
28
27
|
import Jina from "../Jina";
|
29
28
|
import LLaVA from "../LLaVA";
|
30
29
|
import Meta from "../Meta";
|
30
|
+
import Microsoft from "../Microsoft";
|
31
31
|
import Minimax from "../Minimax";
|
32
32
|
import Mistral from "../Mistral";
|
33
33
|
import Moonshot from "../Moonshot";
|
@@ -181,8 +181,8 @@ export var modelMappings = [{
|
|
181
181
|
Icon: Suno,
|
182
182
|
keywords: ['suno']
|
183
183
|
}, {
|
184
|
-
Icon:
|
185
|
-
keywords: ['wizardlm', 'phi3', 'phi-
|
184
|
+
Icon: Microsoft,
|
185
|
+
keywords: ['wizardlm', 'phi3', '^/phi-', '^phi-']
|
186
186
|
}, {
|
187
187
|
Icon: Adobe,
|
188
188
|
keywords: ['firefly']
|
@@ -69,6 +69,7 @@ import Volcengine from "../Volcengine";
|
|
69
69
|
import Wenxin from "../Wenxin";
|
70
70
|
import WorkersAI from "../WorkersAI";
|
71
71
|
import XAI from "../XAI";
|
72
|
+
import Xinference from "../Xinference";
|
72
73
|
import ZeroOne from "../ZeroOne";
|
73
74
|
import Zhipu from "../Zhipu";
|
74
75
|
import Combine from "./ProviderCombine/Combine";
|
@@ -362,15 +363,21 @@ export var providerMappings = [{
|
|
362
363
|
keywords: [ModelProvider.Volcengine]
|
363
364
|
}, {
|
364
365
|
Icon: SambaNova,
|
365
|
-
combineMultiple: 0.
|
366
|
+
combineMultiple: 0.8,
|
366
367
|
keywords: [ModelProvider.SambaNova]
|
367
368
|
}, {
|
368
369
|
Icon: Cohere,
|
369
370
|
keywords: [ModelProvider.Cohere]
|
370
371
|
}, {
|
371
372
|
Icon: Search1API,
|
373
|
+
combineMultiple: 0.9,
|
372
374
|
keywords: [ModelProvider.Search1API]
|
373
375
|
}, {
|
374
376
|
Icon: Infinigence,
|
377
|
+
combineMultiple: 0.8,
|
375
378
|
keywords: [ModelProvider.InfiniAI]
|
379
|
+
}, {
|
380
|
+
Icon: Xinference,
|
381
|
+
combineMultiple: 0.85,
|
382
|
+
keywords: [ModelProvider.Xinference]
|
376
383
|
}];
|
@@ -50,6 +50,7 @@ export var ModelProvider = /*#__PURE__*/function (ModelProvider) {
|
|
50
50
|
ModelProvider["Volcengine"] = "volcengine";
|
51
51
|
ModelProvider["Wenxin"] = "wenxin";
|
52
52
|
ModelProvider["XAI"] = "xai";
|
53
|
+
ModelProvider["Xinference"] = "xinference";
|
53
54
|
ModelProvider["ZeroOne"] = "zeroone";
|
54
55
|
ModelProvider["ZhiPu"] = "zhipu";
|
55
56
|
return ModelProvider;
|
package/es/icons.d.ts
CHANGED
@@ -35,6 +35,7 @@ export { default as Colab, type CompoundedIcon as ColabProps } from './Colab';
|
|
35
35
|
export { default as ComfyUI, type CompoundedIcon as ComfyUIProps } from './ComfyUI';
|
36
36
|
export { default as CommandA, type CompoundedIcon as CommandAProps } from './CommandA';
|
37
37
|
export { default as Copilot, type CompoundedIcon as CopilotProps } from './Copilot';
|
38
|
+
export { default as Coqui, type CompoundedIcon as CoquiProps } from './Coqui';
|
38
39
|
export { default as Coze, type CompoundedIcon as CozeProps } from './Coze';
|
39
40
|
export { default as CrewAI, type CompoundedIcon as CrewAIrops } from './CrewAI';
|
40
41
|
export { default as Cursor, type CompoundedIcon as CursorProps } from './Cursor';
|
@@ -167,6 +168,7 @@ export { default as Volcengine, type CompoundedIcon as VolcengineProps } from '.
|
|
167
168
|
export { default as Wenxin, type CompoundedIcon as WenxinProps } from './Wenxin';
|
168
169
|
export { default as WorkersAI, type CompoundedIcon as WorkersAIProps } from './WorkersAI';
|
169
170
|
export { default as XAI, type CompoundedIcon as XAIProps } from './XAI';
|
171
|
+
export { default as Xinference, type CompoundedIcon as XinferenceProps } from './Xinference';
|
170
172
|
export { default as Xuanyuan, type CompoundedIcon as XuanyuanProps } from './Xuanyuan';
|
171
173
|
export { default as Yandex, type CompoundedIcon as YandexProps } from './Yandex';
|
172
174
|
export { default as Yi, type CompoundedIcon as YiProps } from './Yi';
|
package/es/icons.js
CHANGED
@@ -35,6 +35,7 @@ export { default as Colab } from "./Colab";
|
|
35
35
|
export { default as ComfyUI } from "./ComfyUI";
|
36
36
|
export { default as CommandA } from "./CommandA";
|
37
37
|
export { default as Copilot } from "./Copilot";
|
38
|
+
export { default as Coqui } from "./Coqui";
|
38
39
|
export { default as Coze } from "./Coze";
|
39
40
|
export { default as CrewAI } from "./CrewAI";
|
40
41
|
export { default as Cursor } from "./Cursor";
|
@@ -167,6 +168,7 @@ export { default as Volcengine } from "./Volcengine";
|
|
167
168
|
export { default as Wenxin } from "./Wenxin";
|
168
169
|
export { default as WorkersAI } from "./WorkersAI";
|
169
170
|
export { default as XAI } from "./XAI";
|
171
|
+
export { default as Xinference } from "./Xinference";
|
170
172
|
export { default as Xuanyuan } from "./Xuanyuan";
|
171
173
|
export { default as Yandex } from "./Yandex";
|
172
174
|
export { default as Yi } from "./Yi";
|
package/es/toc.js
CHANGED
@@ -672,6 +672,24 @@ var toc = [{
|
|
672
672
|
"hasTextColor": false
|
673
673
|
},
|
674
674
|
"title": "Copilot"
|
675
|
+
}, {
|
676
|
+
"color": "#03363D",
|
677
|
+
"desc": "https://github.com/coqui-ai/TTS",
|
678
|
+
"docsUrl": "coqui",
|
679
|
+
"fullTitle": "Coqui",
|
680
|
+
"group": "application",
|
681
|
+
"id": "Coqui",
|
682
|
+
"param": {
|
683
|
+
"hasAvatar": true,
|
684
|
+
"hasBrand": false,
|
685
|
+
"hasBrandColor": false,
|
686
|
+
"hasColor": true,
|
687
|
+
"hasCombine": true,
|
688
|
+
"hasText": true,
|
689
|
+
"hasTextCn": false,
|
690
|
+
"hasTextColor": false
|
691
|
+
},
|
692
|
+
"title": "Coqui"
|
675
693
|
}, {
|
676
694
|
"color": "#4D53E8",
|
677
695
|
"desc": "https://coze.com",
|
@@ -3069,6 +3087,24 @@ var toc = [{
|
|
3069
3087
|
"hasTextColor": false
|
3070
3088
|
},
|
3071
3089
|
"title": "Grok"
|
3090
|
+
}, {
|
3091
|
+
"color": "#781ff5",
|
3092
|
+
"desc": "https://github.com/xorbitsai/inference",
|
3093
|
+
"docsUrl": "xinference",
|
3094
|
+
"fullTitle": "Xinference",
|
3095
|
+
"group": "provider",
|
3096
|
+
"id": "Xinference",
|
3097
|
+
"param": {
|
3098
|
+
"hasAvatar": true,
|
3099
|
+
"hasBrand": false,
|
3100
|
+
"hasBrandColor": false,
|
3101
|
+
"hasColor": true,
|
3102
|
+
"hasCombine": true,
|
3103
|
+
"hasText": true,
|
3104
|
+
"hasTextCn": false,
|
3105
|
+
"hasTextColor": false
|
3106
|
+
},
|
3107
|
+
"title": "Xinference"
|
3072
3108
|
}, {
|
3073
3109
|
"color": "#fff",
|
3074
3110
|
"desc": "https://github.com/Duxiaoman-DI/XuanYuan",
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/icons",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.94.0",
|
4
4
|
"description": "Popular AI / LLM Model Brand SVG Logo and Icon Collection",
|
5
5
|
"keywords": [
|
6
6
|
"lobehub",
|
@@ -27,7 +27,7 @@
|
|
27
27
|
"es"
|
28
28
|
],
|
29
29
|
"dependencies": {
|
30
|
-
"@lobehub/ui": "^1.
|
30
|
+
"@lobehub/ui": "^1.168.7",
|
31
31
|
"antd-style": "^3.7.1",
|
32
32
|
"lucide-react": "^0.469.0",
|
33
33
|
"polished": "^4.3.1",
|