@lobehub/icons 1.34.1 → 1.34.2
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.
@@ -29,6 +29,7 @@ import Gemini from "../Gemini";
|
|
29
29
|
import Github from "../Github";
|
30
30
|
import Google from "../Google";
|
31
31
|
import Groq from "../Groq";
|
32
|
+
import Hunyuan from "../Hunyuan";
|
32
33
|
import LobeHub from "../LobeHub";
|
33
34
|
import Minimax from "../Minimax";
|
34
35
|
import Mistral from "../Mistral";
|
@@ -247,4 +248,8 @@ export var providerMappings = [{
|
|
247
248
|
Icon: Github.Combine,
|
248
249
|
keywords: [ModelProvider.Github],
|
249
250
|
multiple: 0.95
|
251
|
+
}, {
|
252
|
+
Icon: Hunyuan.Combine,
|
253
|
+
keywords: [ModelProvider.Hunyuan],
|
254
|
+
multiple: 0.9
|
250
255
|
}];
|
package/es/ProviderIcon/const.js
CHANGED
@@ -11,6 +11,7 @@ import Fireworks from "../Fireworks";
|
|
11
11
|
import Github from "../Github";
|
12
12
|
import Google from "../Google";
|
13
13
|
import Groq from "../Groq";
|
14
|
+
import Hunyuan from "../Hunyuan";
|
14
15
|
import LobeHub from "../LobeHub";
|
15
16
|
import Minimax from "../Minimax";
|
16
17
|
import Mistral from "../Mistral";
|
@@ -41,6 +42,7 @@ export var ModelProvider = /*#__PURE__*/function (ModelProvider) {
|
|
41
42
|
ModelProvider["Github"] = "github";
|
42
43
|
ModelProvider["Google"] = "google";
|
43
44
|
ModelProvider["Groq"] = "groq";
|
45
|
+
ModelProvider["Hunyuan"] = "hunyuan";
|
44
46
|
ModelProvider["LobeHub"] = "lobehub";
|
45
47
|
ModelProvider["Minimax"] = "minimax";
|
46
48
|
ModelProvider["Mistral"] = "mistral";
|
@@ -151,4 +153,7 @@ export var providerMappings = [{
|
|
151
153
|
}, {
|
152
154
|
Icon: Doubao,
|
153
155
|
keywords: [ModelProvider.Doubao]
|
156
|
+
}, {
|
157
|
+
Icon: Hunyuan,
|
158
|
+
keywords: [ModelProvider.Hunyuan]
|
154
159
|
}];
|