@lobehub/icons 1.33.1 → 1.33.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.
package/es/ModelIcon/const.js
CHANGED
@@ -14,6 +14,7 @@ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) r
|
|
14
14
|
import { Divider } from 'antd';
|
15
15
|
import { memo } from 'react';
|
16
16
|
import { Flexbox } from 'react-layout-kit';
|
17
|
+
import Ai21 from "../Ai21";
|
17
18
|
import Ai360 from "../Ai360";
|
18
19
|
import AiMass from "../AiMass";
|
19
20
|
import Anthropic from "../Anthropic";
|
@@ -237,4 +238,7 @@ export var providerMappings = [{
|
|
237
238
|
Icon: Upstage.Combine,
|
238
239
|
keywords: [ModelProvider.Upstage],
|
239
240
|
multiple: 0.9
|
241
|
+
}, {
|
242
|
+
Icon: Ai21.Combine,
|
243
|
+
keywords: [ModelProvider.Ai21]
|
240
244
|
}];
|
package/es/ProviderIcon/const.js
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
import Ai21 from "../Ai21";
|
1
2
|
import Ai360 from "../Ai360";
|
2
3
|
import AiMass from "../AiMass";
|
3
4
|
import Anthropic from "../Anthropic";
|
@@ -26,6 +27,7 @@ import Upstage from "../Upstage";
|
|
26
27
|
import ZeroOne from "../ZeroOne";
|
27
28
|
import Zhipu from "../Zhipu";
|
28
29
|
export var ModelProvider = /*#__PURE__*/function (ModelProvider) {
|
30
|
+
ModelProvider["Ai21"] = "ai21";
|
29
31
|
ModelProvider["Ai360"] = "ai360";
|
30
32
|
ModelProvider["Anthropic"] = "anthropic";
|
31
33
|
ModelProvider["Azure"] = "azure";
|
@@ -136,4 +138,7 @@ export var providerMappings = [{
|
|
136
138
|
}, {
|
137
139
|
Icon: Upstage,
|
138
140
|
keywords: [ModelProvider.Upstage]
|
141
|
+
}, {
|
142
|
+
Icon: Ai21,
|
143
|
+
keywords: [ModelProvider.Ai21]
|
139
144
|
}];
|