@lobehub/icons 1.35.1 → 1.35.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.
@@ -28,6 +28,7 @@ import Gemini from "../Gemini";
|
|
28
28
|
import Github from "../Github";
|
29
29
|
import Google from "../Google";
|
30
30
|
import Groq from "../Groq";
|
31
|
+
import HuggingFace from "../HuggingFace";
|
31
32
|
import Hunyuan from "../Hunyuan";
|
32
33
|
import LobeHub from "../LobeHub";
|
33
34
|
import Minimax from "../Minimax";
|
@@ -263,4 +264,8 @@ export var providerMappings = [{
|
|
263
264
|
Icon: SenseNova,
|
264
265
|
combineMultiple: 0.95,
|
265
266
|
keywords: [ModelProvider.SenseNova]
|
267
|
+
}, {
|
268
|
+
Icon: HuggingFace,
|
269
|
+
combineMultiple: 1.16,
|
270
|
+
keywords: [ModelProvider.HuggingFace]
|
266
271
|
}];
|
@@ -11,6 +11,7 @@ export var ModelProvider = /*#__PURE__*/function (ModelProvider) {
|
|
11
11
|
ModelProvider["Github"] = "github";
|
12
12
|
ModelProvider["Google"] = "google";
|
13
13
|
ModelProvider["Groq"] = "groq";
|
14
|
+
ModelProvider["HuggingFace"] = "huggingface";
|
14
15
|
ModelProvider["Hunyuan"] = "hunyuan";
|
15
16
|
ModelProvider["LobeHub"] = "lobehub";
|
16
17
|
ModelProvider["Minimax"] = "minimax";
|