@lobehub/icons 1.70.0 → 1.72.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.
Files changed (76) hide show
  1. package/README.md +23 -21
  2. package/es/AzureAI/components/Avatar.d.ts +5 -0
  3. package/es/AzureAI/components/Avatar.js +27 -0
  4. package/es/AzureAI/components/Color.d.ts +3 -0
  5. package/es/AzureAI/components/Color.js +178 -0
  6. package/es/AzureAI/components/Combine.d.ts +7 -0
  7. package/es/AzureAI/components/Combine.js +32 -0
  8. package/es/AzureAI/components/Mono.d.ts +3 -0
  9. package/es/AzureAI/components/Mono.js +48 -0
  10. package/es/AzureAI/components/Text.d.ts +3 -0
  11. package/es/AzureAI/components/Text.js +40 -0
  12. package/es/AzureAI/index.d.ts +15 -0
  13. package/es/AzureAI/index.js +16 -0
  14. package/es/AzureAI/style.d.ts +4 -0
  15. package/es/AzureAI/style.js +4 -0
  16. package/es/Fireworks/components/Avatar.js +3 -3
  17. package/es/Fireworks/components/Color.d.ts +3 -0
  18. package/es/Fireworks/components/Color.js +42 -0
  19. package/es/Fireworks/components/Combine.d.ts +3 -1
  20. package/es/Fireworks/components/Combine.js +9 -3
  21. package/es/Fireworks/components/Mono.js +2 -1
  22. package/es/Fireworks/components/Text.js +2 -2
  23. package/es/Fireworks/index.d.ts +2 -1
  24. package/es/Fireworks/index.js +3 -2
  25. package/es/Fireworks/style.d.ts +2 -3
  26. package/es/Fireworks/style.js +2 -3
  27. package/es/Jina/components/Avatar.d.ts +5 -0
  28. package/es/Jina/components/Avatar.js +27 -0
  29. package/es/Jina/components/Mono.d.ts +3 -0
  30. package/es/Jina/components/Mono.js +41 -0
  31. package/es/Jina/components/Text.d.ts +3 -0
  32. package/es/Jina/components/Text.js +44 -0
  33. package/es/Jina/index.d.ts +11 -0
  34. package/es/Jina/index.js +12 -0
  35. package/es/Jina/style.d.ts +4 -0
  36. package/es/Jina/style.js +4 -0
  37. package/es/PPIO/components/Avatar.d.ts +5 -0
  38. package/es/PPIO/components/Avatar.js +27 -0
  39. package/es/PPIO/components/Color.d.ts +3 -0
  40. package/es/PPIO/components/Color.js +42 -0
  41. package/es/PPIO/components/Combine.d.ts +7 -0
  42. package/es/PPIO/components/Combine.js +32 -0
  43. package/es/PPIO/components/Mono.d.ts +3 -0
  44. package/es/PPIO/components/Mono.js +42 -0
  45. package/es/PPIO/components/Text.d.ts +3 -0
  46. package/es/PPIO/components/Text.js +41 -0
  47. package/es/PPIO/components/TextCn.d.ts +3 -0
  48. package/es/PPIO/components/TextCn.js +41 -0
  49. package/es/PPIO/index.d.ts +17 -0
  50. package/es/PPIO/index.js +18 -0
  51. package/es/PPIO/style.d.ts +4 -0
  52. package/es/PPIO/style.js +4 -0
  53. package/es/Vllm/style.d.ts +1 -1
  54. package/es/Vllm/style.js +1 -1
  55. package/es/Volcengine/components/Avatar.d.ts +5 -0
  56. package/es/Volcengine/components/Avatar.js +26 -0
  57. package/es/Volcengine/components/Color.d.ts +3 -0
  58. package/es/Volcengine/components/Color.js +49 -0
  59. package/es/Volcengine/components/Combine.d.ts +7 -0
  60. package/es/Volcengine/components/Combine.js +32 -0
  61. package/es/Volcengine/components/Mono.d.ts +3 -0
  62. package/es/Volcengine/components/Mono.js +53 -0
  63. package/es/Volcengine/components/Text.d.ts +3 -0
  64. package/es/Volcengine/components/Text.js +48 -0
  65. package/es/Volcengine/index.d.ts +15 -0
  66. package/es/Volcengine/index.js +16 -0
  67. package/es/Volcengine/style.d.ts +4 -0
  68. package/es/Volcengine/style.js +4 -0
  69. package/es/features/ProviderCombine/index.js +4 -6
  70. package/es/features/providerConfig.js +27 -5
  71. package/es/features/providerEnum.d.ts +5 -0
  72. package/es/features/providerEnum.js +5 -0
  73. package/es/icons.d.ts +4 -0
  74. package/es/icons.js +4 -0
  75. package/es/toc.js +77 -6
  76. package/package.json +1 -1
@@ -19,6 +19,7 @@ import AiMass from "../AiMass";
19
19
  import Anthropic from "../Anthropic";
20
20
  import Aws from "../Aws";
21
21
  import Azure from "../Azure";
22
+ import AzureAI from "../AzureAI";
22
23
  import Baichuan from "../Baichuan";
23
24
  import BaiduCloud from "../BaiduCloud";
24
25
  import Bedrock from "../Bedrock";
@@ -36,6 +37,7 @@ import Higress from "../Higress";
36
37
  import HuggingFace from "../HuggingFace";
37
38
  import Hunyuan from "../Hunyuan";
38
39
  import InternLM from "../InternLM";
40
+ import Jina from "../Jina";
39
41
  import LmStudio from "../LmStudio";
40
42
  import LobeHub from "../LobeHub";
41
43
  import Minimax from "../Minimax";
@@ -43,9 +45,11 @@ import Mistral from "../Mistral";
43
45
  import ModelScope from "../ModelScope";
44
46
  import Moonshot from "../Moonshot";
45
47
  import Novita from "../Novita";
48
+ import Nvidia from "../Nvidia";
46
49
  import Ollama from "../Ollama";
47
50
  import OpenAI from "../OpenAI";
48
51
  import OpenRouter from "../OpenRouter";
52
+ import PPIO from "../PPIO";
49
53
  import Perplexity from "../Perplexity";
50
54
  import Qwen from "../Qwen";
51
55
  import SenseNova from "../SenseNova";
@@ -56,12 +60,13 @@ import TencentCloud from "../TencentCloud";
56
60
  import Together from "../Together";
57
61
  import Upstage from "../Upstage";
58
62
  import VertexAI from "../VertexAI";
63
+ import Vllm from "../Vllm";
64
+ import Volcengine from "../Volcengine";
59
65
  import Wenxin from "../Wenxin";
60
66
  import WorkersAI from "../WorkersAI";
61
67
  import XAI from "../XAI";
62
68
  import ZeroOne from "../ZeroOne";
63
69
  import Zhipu from "../Zhipu";
64
- import { Nvidia } from "../icons";
65
70
  import Combine from "./ProviderCombine/Combine";
66
71
  import { ModelProvider } from "./providerEnum";
67
72
  import { jsx as _jsx } from "react/jsx-runtime";
@@ -251,12 +256,12 @@ export var providerMappings = [{
251
256
  }, {
252
257
  Icon: Hunyuan,
253
258
  keywords: [ModelProvider.Hunyuan]
254
- }, {
255
- Icon: TencentCloud,
256
- keywords: [ModelProvider.TencentCloud]
257
259
  }, {
258
260
  Icon: Nvidia,
259
261
  keywords: [ModelProvider.Nvidia]
262
+ }, {
263
+ Icon: TencentCloud,
264
+ keywords: [ModelProvider.TencentCloud]
260
265
  }, {
261
266
  Combine: /*#__PURE__*/memo(function (_ref5) {
262
267
  var _ref5$size = _ref5.size,
@@ -323,15 +328,32 @@ export var providerMappings = [{
323
328
  }, {
324
329
  Icon: Higress,
325
330
  keywords: [ModelProvider.Higress]
331
+ }, {
332
+ Icon: Vllm,
333
+ combineMultiple: 0.85,
334
+ keywords: [ModelProvider.VLLM]
326
335
  }, {
327
336
  Icon: GiteeAI,
328
337
  combineMultiple: 0.95,
329
338
  keywords: [ModelProvider.GiteeAI]
330
339
  }, {
331
340
  Icon: ModelScope,
332
- combineMultiple: 0.95,
341
+ combineMultiple: 1.2,
333
342
  keywords: [ModelProvider.ModelScope]
334
343
  }, {
335
344
  Icon: VertexAI,
336
345
  keywords: [ModelProvider.VertexAI]
346
+ }, {
347
+ Icon: PPIO,
348
+ combineMultiple: 0.85,
349
+ keywords: [ModelProvider.PPIO]
350
+ }, {
351
+ Icon: Jina,
352
+ keywords: [ModelProvider.Jina]
353
+ }, {
354
+ Icon: AzureAI,
355
+ keywords: [ModelProvider.AzureAI]
356
+ }, {
357
+ Icon: Volcengine,
358
+ keywords: [ModelProvider.Volcengine]
337
359
  }];
@@ -3,6 +3,7 @@ export declare enum ModelProvider {
3
3
  Ai360 = "ai360",
4
4
  Anthropic = "anthropic",
5
5
  Azure = "azure",
6
+ AzureAI = "azureai",
6
7
  Baichuan = "baichuan",
7
8
  Bedrock = "bedrock",
8
9
  Cloudflare = "cloudflare",
@@ -17,6 +18,7 @@ export declare enum ModelProvider {
17
18
  HuggingFace = "huggingface",
18
19
  Hunyuan = "hunyuan",
19
20
  InternLM = "internlm",
21
+ Jina = "jina",
20
22
  LmStudio = "lmstudio",
21
23
  LobeHub = "lobehub",
22
24
  Minimax = "minimax",
@@ -28,6 +30,7 @@ export declare enum ModelProvider {
28
30
  Ollama = "ollama",
29
31
  OpenAI = "openai",
30
32
  OpenRouter = "openrouter",
33
+ PPIO = "ppio",
31
34
  Perplexity = "perplexity",
32
35
  Qwen = "qwen",
33
36
  SenseNova = "sensenova",
@@ -38,7 +41,9 @@ export declare enum ModelProvider {
38
41
  TencentCloud = "tencentcloud",
39
42
  TogetherAI = "togetherai",
40
43
  Upstage = "upstage",
44
+ VLLM = "vllm",
41
45
  VertexAI = "vertexai",
46
+ Volcengine = "volcengine",
42
47
  Wenxin = "wenxin",
43
48
  XAI = "xai",
44
49
  ZeroOne = "zeroone",
@@ -3,6 +3,7 @@ export var ModelProvider = /*#__PURE__*/function (ModelProvider) {
3
3
  ModelProvider["Ai360"] = "ai360";
4
4
  ModelProvider["Anthropic"] = "anthropic";
5
5
  ModelProvider["Azure"] = "azure";
6
+ ModelProvider["AzureAI"] = "azureai";
6
7
  ModelProvider["Baichuan"] = "baichuan";
7
8
  ModelProvider["Bedrock"] = "bedrock";
8
9
  ModelProvider["Cloudflare"] = "cloudflare";
@@ -17,6 +18,7 @@ export var ModelProvider = /*#__PURE__*/function (ModelProvider) {
17
18
  ModelProvider["HuggingFace"] = "huggingface";
18
19
  ModelProvider["Hunyuan"] = "hunyuan";
19
20
  ModelProvider["InternLM"] = "internlm";
21
+ ModelProvider["Jina"] = "jina";
20
22
  ModelProvider["LmStudio"] = "lmstudio";
21
23
  ModelProvider["LobeHub"] = "lobehub";
22
24
  ModelProvider["Minimax"] = "minimax";
@@ -28,6 +30,7 @@ export var ModelProvider = /*#__PURE__*/function (ModelProvider) {
28
30
  ModelProvider["Ollama"] = "ollama";
29
31
  ModelProvider["OpenAI"] = "openai";
30
32
  ModelProvider["OpenRouter"] = "openrouter";
33
+ ModelProvider["PPIO"] = "ppio";
31
34
  ModelProvider["Perplexity"] = "perplexity";
32
35
  ModelProvider["Qwen"] = "qwen";
33
36
  ModelProvider["SenseNova"] = "sensenova";
@@ -38,7 +41,9 @@ export var ModelProvider = /*#__PURE__*/function (ModelProvider) {
38
41
  ModelProvider["TencentCloud"] = "tencentcloud";
39
42
  ModelProvider["TogetherAI"] = "togetherai";
40
43
  ModelProvider["Upstage"] = "upstage";
44
+ ModelProvider["VLLM"] = "vllm";
41
45
  ModelProvider["VertexAI"] = "vertexai";
46
+ ModelProvider["Volcengine"] = "volcengine";
42
47
  ModelProvider["Wenxin"] = "wenxin";
43
48
  ModelProvider["XAI"] = "xai";
44
49
  ModelProvider["ZeroOne"] = "zeroone";
package/es/icons.d.ts CHANGED
@@ -11,6 +11,7 @@ export { default as Automatic, type CompoundedIcon as AutomaticProps } from './A
11
11
  export { default as Aws, type CompoundedIcon as AwsProps } from './Aws';
12
12
  export { default as Aya, type CompoundedIcon as AyaProps } from './Aya';
13
13
  export { default as Azure, type CompoundedIcon as AzureProps } from './Azure';
14
+ export { default as AzureAI, type CompoundedIcon as AzureAIProps } from './AzureAI';
14
15
  export { default as Baichuan, type CompoundedIcon as BaichuanProps } from './Baichuan';
15
16
  export { default as Baidu, type CompoundedIcon as BaiduProps } from './Baidu';
16
17
  export { default as BaiduCloud, type CompoundedIcon as BaiduCloudProps } from './BaiduCloud';
@@ -59,6 +60,7 @@ export { default as HuggingFace, type CompoundedIcon as HuggingFaceProps } from
59
60
  export { default as Hunyuan, type CompoundedIcon as HunyuanProps } from './Hunyuan';
60
61
  export { default as Ideogram, type CompoundedIcon as IdeogramProps } from './Ideogram';
61
62
  export { default as InternLM, type CompoundedIcon as InternLMProps } from './InternLM';
63
+ export { default as Jina, type CompoundedIcon as JinaProps } from './Jina';
62
64
  export { default as Kimi, type CompoundedIcon as KimiProps } from './Kimi';
63
65
  export { default as Kling, type CompoundedIcon as KlingProps } from './Kling';
64
66
  export { default as LangChain, type CompoundedIcon as LangChainProps } from './LangChain';
@@ -91,6 +93,7 @@ export { default as Pika, type CompoundedIcon as PikaProps } from './Pika';
91
93
  export { default as PixVerse, type CompoundedIcon as PixVerseProps } from './PixVerse';
92
94
  export { default as Poe, type CompoundedIcon as PoeProps } from './Poe';
93
95
  export { default as Pollinations, type CompoundedIcon as PollinationsProps } from './Pollinations';
96
+ export { default as PPIO, type CompoundedIcon as PPIOProps } from './PPIO';
94
97
  export { default as Qingyan, type CompoundedIcon as QingyanProps } from './Qingyan';
95
98
  export { default as Qwen, type CompoundedIcon as QwenProps } from './Qwen';
96
99
  export { default as Recraft, type CompoundedIcon as RecraftProps } from './Recraft';
@@ -119,6 +122,7 @@ export { default as VertexAI, type CompoundedIcon as VertexAIProps } from './Ver
119
122
  export { default as Vidu, type CompoundedIcon as ViduProps } from './Vidu';
120
123
  export { default as Viggle, type CompoundedIcon as ViggleProps } from './Viggle';
121
124
  export { default as Vllm, type CompoundedIcon as VllmProps } from './Vllm';
125
+ export { default as Volcengine, type CompoundedIcon as VolcengineProps } from './Volcengine';
122
126
  export { default as Wenxin, type CompoundedIcon as WenxinProps } from './Wenxin';
123
127
  export { default as WorkersAI, type CompoundedIcon as WorkersAIProps } from './WorkersAI';
124
128
  export { default as XAI, type CompoundedIcon as XAIProps } from './XAI';
package/es/icons.js CHANGED
@@ -11,6 +11,7 @@ export { default as Automatic } from "./Automatic";
11
11
  export { default as Aws } from "./Aws";
12
12
  export { default as Aya } from "./Aya";
13
13
  export { default as Azure } from "./Azure";
14
+ export { default as AzureAI } from "./AzureAI";
14
15
  export { default as Baichuan } from "./Baichuan";
15
16
  export { default as Baidu } from "./Baidu";
16
17
  export { default as BaiduCloud } from "./BaiduCloud";
@@ -59,6 +60,7 @@ export { default as HuggingFace } from "./HuggingFace";
59
60
  export { default as Hunyuan } from "./Hunyuan";
60
61
  export { default as Ideogram } from "./Ideogram";
61
62
  export { default as InternLM } from "./InternLM";
63
+ export { default as Jina } from "./Jina";
62
64
  export { default as Kimi } from "./Kimi";
63
65
  export { default as Kling } from "./Kling";
64
66
  export { default as LangChain } from "./LangChain";
@@ -91,6 +93,7 @@ export { default as Pika } from "./Pika";
91
93
  export { default as PixVerse } from "./PixVerse";
92
94
  export { default as Poe } from "./Poe";
93
95
  export { default as Pollinations } from "./Pollinations";
96
+ export { default as PPIO } from "./PPIO";
94
97
  export { default as Qingyan } from "./Qingyan";
95
98
  export { default as Qwen } from "./Qwen";
96
99
  export { default as Recraft } from "./Recraft";
@@ -119,6 +122,7 @@ export { default as VertexAI } from "./VertexAI";
119
122
  export { default as Vidu } from "./Vidu";
120
123
  export { default as Viggle } from "./Viggle";
121
124
  export { default as Vllm } from "./Vllm";
125
+ export { default as Volcengine } from "./Volcengine";
122
126
  export { default as Wenxin } from "./Wenxin";
123
127
  export { default as WorkersAI } from "./WorkersAI";
124
128
  export { default as XAI } from "./XAI";
package/es/toc.js CHANGED
@@ -234,6 +234,24 @@ var toc = [{
234
234
  "hasTextColor": false
235
235
  },
236
236
  "title": "Azure"
237
+ }, {
238
+ "color": "#000",
239
+ "desc": "https://ai.azure.com",
240
+ "docsUrl": "azure-ai",
241
+ "fullTitle": "AzureAI",
242
+ "group": "provider",
243
+ "id": "AzureAI",
244
+ "param": {
245
+ "hasAvatar": true,
246
+ "hasBrand": false,
247
+ "hasBrandColor": false,
248
+ "hasColor": true,
249
+ "hasCombine": true,
250
+ "hasText": true,
251
+ "hasTextCn": false,
252
+ "hasTextColor": false
253
+ },
254
+ "title": "AzureAI"
237
255
  }, {
238
256
  "color": "#FF6933",
239
257
  "colorGradient": "linear-gradient(-45deg, #FF6933, #FEC13E)",
@@ -747,8 +765,7 @@ var toc = [{
747
765
  },
748
766
  "title": "Fal"
749
767
  }, {
750
- "color": "#000",
751
- "colorGradient": "linear-gradient(to bottom, #952C78, #050003)",
768
+ "color": "#5019C5",
752
769
  "desc": "https://fireworks.ai",
753
770
  "docsUrl": "fireworks",
754
771
  "fullTitle": "Fireworks",
@@ -758,7 +775,7 @@ var toc = [{
758
775
  "hasAvatar": true,
759
776
  "hasBrand": false,
760
777
  "hasBrandColor": false,
761
- "hasColor": false,
778
+ "hasColor": true,
762
779
  "hasCombine": true,
763
780
  "hasText": true,
764
781
  "hasTextCn": false,
@@ -1111,6 +1128,24 @@ var toc = [{
1111
1128
  "hasTextColor": false
1112
1129
  },
1113
1130
  "title": "InternLM"
1131
+ }, {
1132
+ "color": "#000",
1133
+ "desc": "https://jina.ai",
1134
+ "docsUrl": "jina",
1135
+ "fullTitle": "Jina AI",
1136
+ "group": "provider",
1137
+ "id": "Jina",
1138
+ "param": {
1139
+ "hasAvatar": true,
1140
+ "hasBrand": false,
1141
+ "hasBrandColor": false,
1142
+ "hasColor": false,
1143
+ "hasCombine": false,
1144
+ "hasText": true,
1145
+ "hasTextCn": false,
1146
+ "hasTextColor": false
1147
+ },
1148
+ "title": "Jina"
1114
1149
  }, {
1115
1150
  "color": "#000",
1116
1151
  "desc": "https://kimi.moonshot.cn",
@@ -1586,6 +1621,24 @@ var toc = [{
1586
1621
  "hasTextColor": false
1587
1622
  },
1588
1623
  "title": "OpenRouter"
1624
+ }, {
1625
+ "color": "#2874ff",
1626
+ "desc": "https://ppinfra.com",
1627
+ "docsUrl": "ppio",
1628
+ "fullTitle": "PPIO",
1629
+ "group": "provider",
1630
+ "id": "PPIO",
1631
+ "param": {
1632
+ "hasAvatar": true,
1633
+ "hasBrand": false,
1634
+ "hasBrandColor": false,
1635
+ "hasColor": true,
1636
+ "hasCombine": true,
1637
+ "hasText": true,
1638
+ "hasTextCn": true,
1639
+ "hasTextColor": false
1640
+ },
1641
+ "title": "PPIO"
1589
1642
  }, {
1590
1643
  "color": "#FFF",
1591
1644
  "desc": "https://ai.google/discover/palm2",
@@ -1826,8 +1879,8 @@ var toc = [{
1826
1879
  "color": "#5B2AD8",
1827
1880
  "desc": "https://platform.sensenova.cn",
1828
1881
  "docsUrl": "sense-nova",
1829
- "fullTitle": "SenseNova",
1830
- "group": "provider",
1882
+ "fullTitle": "SenseNova (商汤)",
1883
+ "group": "model",
1831
1884
  "id": "SenseNova",
1832
1885
  "param": {
1833
1886
  "hasAvatar": true,
@@ -1990,7 +2043,7 @@ var toc = [{
1990
2043
  "desc": "https://cloud.tencent.com",
1991
2044
  "docsUrl": "tencent-cloud",
1992
2045
  "fullTitle": "TencentCloud (腾讯云)",
1993
- "group": "model",
2046
+ "group": "provider",
1994
2047
  "id": "TencentCloud",
1995
2048
  "param": {
1996
2049
  "hasAvatar": true,
@@ -2204,6 +2257,24 @@ var toc = [{
2204
2257
  "hasTextColor": false
2205
2258
  },
2206
2259
  "title": "vLLM"
2260
+ }, {
2261
+ "color": "#fff",
2262
+ "desc": "https://volcengine.com",
2263
+ "docsUrl": "volcengine",
2264
+ "fullTitle": "Volcengine (火山引擎)",
2265
+ "group": "provider",
2266
+ "id": "Volcengine",
2267
+ "param": {
2268
+ "hasAvatar": true,
2269
+ "hasBrand": false,
2270
+ "hasBrandColor": false,
2271
+ "hasColor": true,
2272
+ "hasCombine": true,
2273
+ "hasText": true,
2274
+ "hasTextCn": false,
2275
+ "hasTextColor": false
2276
+ },
2277
+ "title": "Volcengine"
2207
2278
  }, {
2208
2279
  "color": "#167ADF",
2209
2280
  "colorGradient": "linear-gradient(to right, #0A51C3, #23A4FB)",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/icons",
3
- "version": "1.70.0",
3
+ "version": "1.72.0",
4
4
  "description": "Popular AI / LLM Model Brand SVG Logo and Icon Collection",
5
5
  "keywords": [
6
6
  "lobehub",