@lobehub/icons 2.29.2 → 2.31.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 +92 -90
- package/es/AkashChat/components/Avatar.d.ts +5 -0
- package/es/AkashChat/components/Avatar.js +25 -0
- package/es/AkashChat/components/Color.d.ts +3 -0
- package/es/AkashChat/components/Color.js +65 -0
- package/es/AkashChat/components/Combine.d.ts +7 -0
- package/es/AkashChat/components/Combine.js +32 -0
- package/es/AkashChat/components/Mono.d.ts +3 -0
- package/es/AkashChat/components/Mono.js +47 -0
- package/es/AkashChat/components/Text.d.ts +3 -0
- package/es/AkashChat/components/Text.js +43 -0
- package/es/AkashChat/index.d.ts +15 -0
- package/es/AkashChat/index.js +14 -0
- package/es/AkashChat/style.d.ts +7 -0
- package/es/AkashChat/style.js +9 -0
- package/es/Bailian/components/Avatar.d.ts +5 -0
- package/es/Bailian/components/Avatar.js +25 -0
- package/es/Bailian/components/Color.d.ts +3 -0
- package/es/Bailian/components/Color.js +57 -0
- package/es/Bailian/components/Combine.d.ts +7 -0
- package/es/Bailian/components/Combine.js +32 -0
- package/es/Bailian/components/Mono.d.ts +3 -0
- package/es/Bailian/components/Mono.js +57 -0
- package/es/Bailian/components/Text.d.ts +3 -0
- package/es/Bailian/components/Text.js +39 -0
- package/es/Bailian/index.d.ts +15 -0
- package/es/Bailian/index.js +14 -0
- package/es/Bailian/style.d.ts +7 -0
- package/es/Bailian/style.js +9 -0
- package/es/CometAPI/components/Avatar.d.ts +5 -0
- package/es/CometAPI/components/Avatar.js +25 -0
- package/es/CometAPI/components/Color.d.ts +3 -0
- package/es/CometAPI/components/Color.js +48 -0
- package/es/CometAPI/components/Combine.d.ts +7 -0
- package/es/CometAPI/components/Combine.js +32 -0
- package/es/CometAPI/components/Mono.d.ts +3 -0
- package/es/CometAPI/components/Mono.js +42 -0
- package/es/CometAPI/components/Text.d.ts +3 -0
- package/es/CometAPI/components/Text.js +39 -0
- package/es/CometAPI/index.d.ts +15 -0
- package/es/CometAPI/index.js +14 -0
- package/es/CometAPI/style.d.ts +7 -0
- package/es/CometAPI/style.js +9 -0
- package/es/NewAPI/components/Avatar.d.ts +5 -0
- package/es/NewAPI/components/Avatar.js +25 -0
- package/es/NewAPI/components/Color.d.ts +3 -0
- package/es/NewAPI/components/Color.js +100 -0
- package/es/NewAPI/components/Combine.d.ts +7 -0
- package/es/NewAPI/components/Combine.js +32 -0
- package/es/NewAPI/components/Mono.d.ts +3 -0
- package/es/NewAPI/components/Mono.js +44 -0
- package/es/NewAPI/components/Text.d.ts +3 -0
- package/es/NewAPI/components/Text.js +39 -0
- package/es/NewAPI/index.d.ts +15 -0
- package/es/NewAPI/index.js +14 -0
- package/es/NewAPI/style.d.ts +7 -0
- package/es/NewAPI/style.js +9 -0
- package/es/SophNet/components/Avatar.d.ts +5 -0
- package/es/SophNet/components/Avatar.js +25 -0
- package/es/SophNet/components/Color.d.ts +3 -0
- package/es/SophNet/components/Color.js +48 -0
- package/es/SophNet/components/Combine.d.ts +7 -0
- package/es/SophNet/components/Combine.js +32 -0
- package/es/SophNet/components/Mono.d.ts +3 -0
- package/es/SophNet/components/Mono.js +46 -0
- package/es/SophNet/components/Text.d.ts +3 -0
- package/es/SophNet/components/Text.js +39 -0
- package/es/SophNet/index.d.ts +15 -0
- package/es/SophNet/index.js +14 -0
- package/es/SophNet/style.d.ts +7 -0
- package/es/SophNet/style.js +9 -0
- package/es/TuriX/components/Avatar.d.ts +5 -0
- package/es/TuriX/components/Avatar.js +25 -0
- package/es/TuriX/components/Combine.d.ts +4 -0
- package/es/TuriX/components/Combine.js +26 -0
- package/es/TuriX/components/Mono.d.ts +3 -0
- package/es/TuriX/components/Mono.js +40 -0
- package/es/TuriX/components/Text.d.ts +3 -0
- package/es/TuriX/components/Text.js +40 -0
- package/es/TuriX/index.d.ts +14 -0
- package/es/TuriX/index.js +13 -0
- package/es/TuriX/style.d.ts +8 -0
- package/es/TuriX/style.js +10 -0
- package/es/features/providerConfig.js +20 -1
- package/es/features/providerEnum.d.ts +4 -0
- package/es/features/providerEnum.js +4 -0
- package/es/hooks/useFillId.js +3 -2
- package/es/icons.d.ts +6 -0
- package/es/icons.js +6 -0
- package/es/toc.js +109 -0
- package/package.json +1 -1
@@ -3,6 +3,7 @@ export declare enum ModelProvider {
|
|
3
3
|
Ai302 = "ai302",
|
4
4
|
Ai360 = "ai360",
|
5
5
|
AiHubMix = "aihubmix",
|
6
|
+
AkashChat = "akashchat",
|
6
7
|
Anthropic = "anthropic",
|
7
8
|
Azure = "azure",
|
8
9
|
AzureAI = "azureai",
|
@@ -12,6 +13,7 @@ export declare enum ModelProvider {
|
|
12
13
|
BurnCloud = "burncloud",
|
13
14
|
Cloudflare = "cloudflare",
|
14
15
|
Cohere = "cohere",
|
16
|
+
CometAPI = "cometapi",
|
15
17
|
ComfyUI = "comfyui",
|
16
18
|
DeepSeek = "deepseek",
|
17
19
|
Doubao = "Doubao",
|
@@ -34,6 +36,7 @@ export declare enum ModelProvider {
|
|
34
36
|
ModelScope = "modelscope",
|
35
37
|
Moonshot = "moonshot",
|
36
38
|
Nebius = "nebius",
|
39
|
+
NewAPI = "newapi",
|
37
40
|
Novita = "novita",
|
38
41
|
Nvidia = "nvidia",
|
39
42
|
Ollama = "ollama",
|
@@ -48,6 +51,7 @@ export declare enum ModelProvider {
|
|
48
51
|
Search1API = "search1api",
|
49
52
|
SenseNova = "sensenova",
|
50
53
|
SiliconCloud = "siliconcloud",
|
54
|
+
SophNet = "sophnet",
|
51
55
|
Spark = "spark",
|
52
56
|
Stepfun = "stepfun",
|
53
57
|
Taichu = "taichu",
|
@@ -3,6 +3,7 @@ export var ModelProvider = /*#__PURE__*/function (ModelProvider) {
|
|
3
3
|
ModelProvider["Ai302"] = "ai302";
|
4
4
|
ModelProvider["Ai360"] = "ai360";
|
5
5
|
ModelProvider["AiHubMix"] = "aihubmix";
|
6
|
+
ModelProvider["AkashChat"] = "akashchat";
|
6
7
|
ModelProvider["Anthropic"] = "anthropic";
|
7
8
|
ModelProvider["Azure"] = "azure";
|
8
9
|
ModelProvider["AzureAI"] = "azureai";
|
@@ -12,6 +13,7 @@ export var ModelProvider = /*#__PURE__*/function (ModelProvider) {
|
|
12
13
|
ModelProvider["BurnCloud"] = "burncloud";
|
13
14
|
ModelProvider["Cloudflare"] = "cloudflare";
|
14
15
|
ModelProvider["Cohere"] = "cohere";
|
16
|
+
ModelProvider["CometAPI"] = "cometapi";
|
15
17
|
ModelProvider["ComfyUI"] = "comfyui";
|
16
18
|
ModelProvider["DeepSeek"] = "deepseek";
|
17
19
|
ModelProvider["Doubao"] = "Doubao";
|
@@ -34,6 +36,7 @@ export var ModelProvider = /*#__PURE__*/function (ModelProvider) {
|
|
34
36
|
ModelProvider["ModelScope"] = "modelscope";
|
35
37
|
ModelProvider["Moonshot"] = "moonshot";
|
36
38
|
ModelProvider["Nebius"] = "nebius";
|
39
|
+
ModelProvider["NewAPI"] = "newapi";
|
37
40
|
ModelProvider["Novita"] = "novita";
|
38
41
|
ModelProvider["Nvidia"] = "nvidia";
|
39
42
|
ModelProvider["Ollama"] = "ollama";
|
@@ -48,6 +51,7 @@ export var ModelProvider = /*#__PURE__*/function (ModelProvider) {
|
|
48
51
|
ModelProvider["Search1API"] = "search1api";
|
49
52
|
ModelProvider["SenseNova"] = "sensenova";
|
50
53
|
ModelProvider["SiliconCloud"] = "siliconcloud";
|
54
|
+
ModelProvider["SophNet"] = "sophnet";
|
51
55
|
ModelProvider["Spark"] = "spark";
|
52
56
|
ModelProvider["Stepfun"] = "stepfun";
|
53
57
|
ModelProvider["Taichu"] = "taichu";
|
package/es/hooks/useFillId.js
CHANGED
@@ -1,6 +1,7 @@
|
|
1
|
+
import { kebabCase } from 'lodash-es';
|
1
2
|
import { useMemo } from 'react';
|
2
3
|
export var useFillId = function useFillId(namespace) {
|
3
|
-
var id = "lobe-icons-".concat(namespace
|
4
|
+
var id = "lobe-icons-".concat(kebabCase(namespace), "-fill");
|
4
5
|
return useMemo(function () {
|
5
6
|
return {
|
6
7
|
fill: "url(#".concat(id, ")"),
|
@@ -13,7 +14,7 @@ export var useFillIds = function useFillIds(namespace, length) {
|
|
13
14
|
var ids = Array.from({
|
14
15
|
length: length
|
15
16
|
}, function (_, i) {
|
16
|
-
var id = "lobe-icons-".concat(namespace
|
17
|
+
var id = "lobe-icons-".concat(kebabCase(namespace), "-fill-").concat(i);
|
17
18
|
return {
|
18
19
|
fill: "url(#".concat(id, ")"),
|
19
20
|
id: id
|
package/es/icons.d.ts
CHANGED
@@ -8,6 +8,7 @@ export { default as AiHubMix, type CompoundedIcon as AiHubMixProps } from './AiH
|
|
8
8
|
export { default as AiMass, type CompoundedIcon as AiMassProps } from './AiMass';
|
9
9
|
export { default as AionLabs, type CompoundedIcon as AionLabsProps } from './AionLabs';
|
10
10
|
export { default as AiStudio, type CompoundedIcon as AiStudioProps } from './AiStudio';
|
11
|
+
export { default as AkashChat, type CompoundedIcon as AkashChatProps } from './AkashChat';
|
11
12
|
export { default as AlephAlpha, type CompoundedIcon as AlephAlphaProps } from './AlephAlpha';
|
12
13
|
export { default as Alibaba, type CompoundedIcon as AlibabaProps } from './Alibaba';
|
13
14
|
export { default as AlibabaCloud, type CompoundedIcon as AlibabaCloudProps } from './AlibabaCloud';
|
@@ -24,6 +25,7 @@ export { default as BAAI, type CompoundedIcon as BAAIProps } from './BAAI';
|
|
24
25
|
export { default as Baichuan, type CompoundedIcon as BaichuanProps } from './Baichuan';
|
25
26
|
export { default as Baidu, type CompoundedIcon as BaiduProps } from './Baidu';
|
26
27
|
export { default as BaiduCloud, type CompoundedIcon as BaiduCloudProps } from './BaiduCloud';
|
28
|
+
export { default as Bailian, type CompoundedIcon as BailianProps } from './Bailian';
|
27
29
|
export { default as Baseten, type CompoundedIcon as BasetenProps } from './Baseten';
|
28
30
|
export { default as Bedrock, type CompoundedIcon as BedrockProps } from './Bedrock';
|
29
31
|
export { default as Bfl, type CompoundedIcon as BflProps } from './Bfl';
|
@@ -45,6 +47,7 @@ export { default as CogVideo, type CompoundedIcon as CogVideoProps } from './Cog
|
|
45
47
|
export { default as CogView, type CompoundedIcon as CogViewProps } from './CogView';
|
46
48
|
export { default as Cohere, type CompoundedIcon as CohereProps } from './Cohere';
|
47
49
|
export { default as Colab, type CompoundedIcon as ColabProps } from './Colab';
|
50
|
+
export { default as CometAPI, type CompoundedIcon as CometAPIProps } from './CometAPI';
|
48
51
|
export { default as ComfyUI, type CompoundedIcon as ComfyUIProps } from './ComfyUI';
|
49
52
|
export { default as CommandA, type CompoundedIcon as CommandAProps } from './CommandA';
|
50
53
|
export { default as Copilot, type CompoundedIcon as CopilotProps } from './Copilot';
|
@@ -151,6 +154,7 @@ export { default as Moonshot, type CompoundedIcon as MoonshotProps } from './Moo
|
|
151
154
|
export { default as MyShell, type CompoundedIcon as MyShellProps } from './MyShell';
|
152
155
|
export { default as N8n, type CompoundedIcon as N8nProps } from './N8n';
|
153
156
|
export { default as Nebius, type CompoundedIcon as NebiusProps } from './Nebius';
|
157
|
+
export { default as NewAPI, type CompoundedIcon as NewAPIProps } from './NewAPI';
|
154
158
|
export { default as NotebookLM, type CompoundedIcon as NotebookLMProps } from './NotebookLM';
|
155
159
|
export { default as Notion, type CompoundedIcon as NotionProps } from './Notion';
|
156
160
|
export { default as NousResearch, type CompoundedIcon as NousResearchProps } from './NousResearch';
|
@@ -194,6 +198,7 @@ export { default as SiliconCloud, type CompoundedIcon as SiliconCloudProps } fro
|
|
194
198
|
export { default as Skywork, type CompoundedIcon as SkyworkProps } from './Skywork';
|
195
199
|
export { default as Smithery, type CompoundedIcon as SmitheryProps } from './Smithery';
|
196
200
|
export { default as Snowflake, type CompoundedIcon as SnowflakeProps } from './Snowflake';
|
201
|
+
export { default as SophNet, type CompoundedIcon as SophNetLabsProps } from './SophNet';
|
197
202
|
export { default as Spark, type CompoundedIcon as SparkProps } from './Spark';
|
198
203
|
export { default as Stability, type CompoundedIcon as StabilityProps } from './Stability';
|
199
204
|
export { default as StateCloud, type CompoundedIcon as StateCloudProps } from './StateCloud';
|
@@ -210,6 +215,7 @@ export { default as Together, type CompoundedIcon as TogetherProps } from './Tog
|
|
210
215
|
export { default as TopazLabs, type CompoundedIcon as TopazLabsProps } from './TopazLabs';
|
211
216
|
export { default as Trae, type CompoundedIcon as TraeProps } from './Trae';
|
212
217
|
export { default as Tripo, type CompoundedIcon as TripoProps } from './Tripo';
|
218
|
+
export { default as TuriX, type CompoundedIcon as TuriXCompoundedIcon } from './TuriX';
|
213
219
|
export { default as Udio, type CompoundedIcon as UdioProps } from './Udio';
|
214
220
|
export { default as Unstructured, type CompoundedIcon as UnstructuredProps } from './Unstructured';
|
215
221
|
export { default as Upstage, type CompoundedIcon as UpstageProps } from './Upstage';
|
package/es/icons.js
CHANGED
@@ -8,6 +8,7 @@ export { default as AiHubMix } from "./AiHubMix";
|
|
8
8
|
export { default as AiMass } from "./AiMass";
|
9
9
|
export { default as AionLabs } from "./AionLabs";
|
10
10
|
export { default as AiStudio } from "./AiStudio";
|
11
|
+
export { default as AkashChat } from "./AkashChat";
|
11
12
|
export { default as AlephAlpha } from "./AlephAlpha";
|
12
13
|
export { default as Alibaba } from "./Alibaba";
|
13
14
|
export { default as AlibabaCloud } from "./AlibabaCloud";
|
@@ -24,6 +25,7 @@ export { default as BAAI } from "./BAAI";
|
|
24
25
|
export { default as Baichuan } from "./Baichuan";
|
25
26
|
export { default as Baidu } from "./Baidu";
|
26
27
|
export { default as BaiduCloud } from "./BaiduCloud";
|
28
|
+
export { default as Bailian } from "./Bailian";
|
27
29
|
export { default as Baseten } from "./Baseten";
|
28
30
|
export { default as Bedrock } from "./Bedrock";
|
29
31
|
export { default as Bfl } from "./Bfl";
|
@@ -45,6 +47,7 @@ export { default as CogVideo } from "./CogVideo";
|
|
45
47
|
export { default as CogView } from "./CogView";
|
46
48
|
export { default as Cohere } from "./Cohere";
|
47
49
|
export { default as Colab } from "./Colab";
|
50
|
+
export { default as CometAPI } from "./CometAPI";
|
48
51
|
export { default as ComfyUI } from "./ComfyUI";
|
49
52
|
export { default as CommandA } from "./CommandA";
|
50
53
|
export { default as Copilot } from "./Copilot";
|
@@ -151,6 +154,7 @@ export { default as Moonshot } from "./Moonshot";
|
|
151
154
|
export { default as MyShell } from "./MyShell";
|
152
155
|
export { default as N8n } from "./N8n";
|
153
156
|
export { default as Nebius } from "./Nebius";
|
157
|
+
export { default as NewAPI } from "./NewAPI";
|
154
158
|
export { default as NotebookLM } from "./NotebookLM";
|
155
159
|
export { default as Notion } from "./Notion";
|
156
160
|
export { default as NousResearch } from "./NousResearch";
|
@@ -194,6 +198,7 @@ export { default as SiliconCloud } from "./SiliconCloud";
|
|
194
198
|
export { default as Skywork } from "./Skywork";
|
195
199
|
export { default as Smithery } from "./Smithery";
|
196
200
|
export { default as Snowflake } from "./Snowflake";
|
201
|
+
export { default as SophNet } from "./SophNet";
|
197
202
|
export { default as Spark } from "./Spark";
|
198
203
|
export { default as Stability } from "./Stability";
|
199
204
|
export { default as StateCloud } from "./StateCloud";
|
@@ -210,6 +215,7 @@ export { default as Together } from "./Together";
|
|
210
215
|
export { default as TopazLabs } from "./TopazLabs";
|
211
216
|
export { default as Trae } from "./Trae";
|
212
217
|
export { default as Tripo } from "./Tripo";
|
218
|
+
export { default as TuriX } from "./TuriX";
|
213
219
|
export { default as Udio } from "./Udio";
|
214
220
|
export { default as Unstructured } from "./Unstructured";
|
215
221
|
export { default as Upstage } from "./Upstage";
|
package/es/toc.js
CHANGED
@@ -180,6 +180,24 @@ var toc = [{
|
|
180
180
|
"hasTextColor": false
|
181
181
|
},
|
182
182
|
"title": "AionLabs"
|
183
|
+
}, {
|
184
|
+
"color": "#000",
|
185
|
+
"desc": "https://chatapi.akash.network",
|
186
|
+
"docsUrl": "akash-chat",
|
187
|
+
"fullTitle": "AkashChat",
|
188
|
+
"group": "provider",
|
189
|
+
"id": "AkashChat",
|
190
|
+
"param": {
|
191
|
+
"hasAvatar": true,
|
192
|
+
"hasBrand": false,
|
193
|
+
"hasBrandColor": false,
|
194
|
+
"hasColor": true,
|
195
|
+
"hasCombine": true,
|
196
|
+
"hasText": true,
|
197
|
+
"hasTextCn": false,
|
198
|
+
"hasTextColor": false
|
199
|
+
},
|
200
|
+
"title": "AkashChat"
|
183
201
|
}, {
|
184
202
|
"color": "#fff",
|
185
203
|
"desc": "https://aleph-alpha.com",
|
@@ -469,6 +487,24 @@ var toc = [{
|
|
469
487
|
"hasTextColor": false
|
470
488
|
},
|
471
489
|
"title": "BaiduCloud"
|
490
|
+
}, {
|
491
|
+
"color": "#615ced",
|
492
|
+
"desc": "https://bailian.console.aliyun.com",
|
493
|
+
"docsUrl": "bailian",
|
494
|
+
"fullTitle": "Bailian (阿里云百炼)",
|
495
|
+
"group": "provider",
|
496
|
+
"id": "Bailian",
|
497
|
+
"param": {
|
498
|
+
"hasAvatar": true,
|
499
|
+
"hasBrand": false,
|
500
|
+
"hasBrandColor": false,
|
501
|
+
"hasColor": true,
|
502
|
+
"hasCombine": true,
|
503
|
+
"hasText": true,
|
504
|
+
"hasTextCn": false,
|
505
|
+
"hasTextColor": false
|
506
|
+
},
|
507
|
+
"title": "BaiLian"
|
472
508
|
}, {
|
473
509
|
"color": "#19E76E",
|
474
510
|
"desc": "https://baseten.co",
|
@@ -851,6 +887,24 @@ var toc = [{
|
|
851
887
|
"hasTextColor": false
|
852
888
|
},
|
853
889
|
"title": "Colab"
|
890
|
+
}, {
|
891
|
+
"color": "#00ACE2",
|
892
|
+
"desc": "https://cometapi.com/",
|
893
|
+
"docsUrl": "comet-api",
|
894
|
+
"fullTitle": "Comet API",
|
895
|
+
"group": "provider",
|
896
|
+
"id": "CometAPI",
|
897
|
+
"param": {
|
898
|
+
"hasAvatar": true,
|
899
|
+
"hasBrand": false,
|
900
|
+
"hasBrandColor": false,
|
901
|
+
"hasColor": true,
|
902
|
+
"hasCombine": true,
|
903
|
+
"hasText": true,
|
904
|
+
"hasTextCn": false,
|
905
|
+
"hasTextColor": false
|
906
|
+
},
|
907
|
+
"title": "CometAPI"
|
854
908
|
}, {
|
855
909
|
"color": "#F0FF41",
|
856
910
|
"desc": "https://comfy.org",
|
@@ -2788,6 +2842,24 @@ var toc = [{
|
|
2788
2842
|
"hasTextColor": false
|
2789
2843
|
},
|
2790
2844
|
"title": "Nebius"
|
2845
|
+
}, {
|
2846
|
+
"color": "#dd2e57",
|
2847
|
+
"desc": "https://newapi.ai",
|
2848
|
+
"docsUrl": "new-api",
|
2849
|
+
"fullTitle": "New API",
|
2850
|
+
"group": "provider",
|
2851
|
+
"id": "NewAPI",
|
2852
|
+
"param": {
|
2853
|
+
"hasAvatar": true,
|
2854
|
+
"hasBrand": false,
|
2855
|
+
"hasBrandColor": false,
|
2856
|
+
"hasColor": true,
|
2857
|
+
"hasCombine": true,
|
2858
|
+
"hasText": true,
|
2859
|
+
"hasTextCn": false,
|
2860
|
+
"hasTextColor": false
|
2861
|
+
},
|
2862
|
+
"title": "New API"
|
2791
2863
|
}, {
|
2792
2864
|
"color": "#fff",
|
2793
2865
|
"desc": "https://notebooklm.google",
|
@@ -3549,6 +3621,24 @@ var toc = [{
|
|
3549
3621
|
"hasTextColor": false
|
3550
3622
|
},
|
3551
3623
|
"title": "Snowflake"
|
3624
|
+
}, {
|
3625
|
+
"color": "#6200ee",
|
3626
|
+
"desc": "https://sophnet.com",
|
3627
|
+
"docsUrl": "soph-net",
|
3628
|
+
"fullTitle": "SophNet",
|
3629
|
+
"group": "provider",
|
3630
|
+
"id": "SophNet",
|
3631
|
+
"param": {
|
3632
|
+
"hasAvatar": true,
|
3633
|
+
"hasBrand": false,
|
3634
|
+
"hasBrandColor": false,
|
3635
|
+
"hasColor": true,
|
3636
|
+
"hasCombine": true,
|
3637
|
+
"hasText": true,
|
3638
|
+
"hasTextCn": false,
|
3639
|
+
"hasTextColor": false
|
3640
|
+
},
|
3641
|
+
"title": "SophNet"
|
3552
3642
|
}, {
|
3553
3643
|
"color": "#0070f0",
|
3554
3644
|
"desc": "https://xinghuo.xfyun.cn",
|
@@ -3840,6 +3930,25 @@ var toc = [{
|
|
3840
3930
|
"hasTextColor": false
|
3841
3931
|
},
|
3842
3932
|
"title": "Tripo"
|
3933
|
+
}, {
|
3934
|
+
"color": "#F7AD8A",
|
3935
|
+
"colorGradient": "linear-gradient(-45deg, #FAD076, #F7AD8A, #C768B9)",
|
3936
|
+
"desc": "https://turix.ai",
|
3937
|
+
"docsUrl": "turi-x",
|
3938
|
+
"fullTitle": "TuriX",
|
3939
|
+
"group": "application",
|
3940
|
+
"id": "TuriX",
|
3941
|
+
"param": {
|
3942
|
+
"hasAvatar": true,
|
3943
|
+
"hasBrand": false,
|
3944
|
+
"hasBrandColor": false,
|
3945
|
+
"hasColor": false,
|
3946
|
+
"hasCombine": true,
|
3947
|
+
"hasText": true,
|
3948
|
+
"hasTextCn": false,
|
3949
|
+
"hasTextColor": false
|
3950
|
+
},
|
3951
|
+
"title": "TuriX"
|
3843
3952
|
}, {
|
3844
3953
|
"color": "#e30a5d",
|
3845
3954
|
"desc": "https://udio.com",
|