@lobehub/icons 1.71.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 (67) 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.js +178 -0
  5. package/es/AzureAI/components/Combine.js +32 -0
  6. package/es/{Jina/components/TextColor.js → AzureAI/components/Mono.js} +8 -7
  7. package/es/AzureAI/components/Text.js +40 -0
  8. package/es/AzureAI/index.d.ts +15 -0
  9. package/es/AzureAI/index.js +16 -0
  10. package/es/AzureAI/style.d.ts +4 -0
  11. package/es/AzureAI/style.js +4 -0
  12. package/es/Fireworks/components/Avatar.js +3 -3
  13. package/es/Fireworks/components/Color.js +42 -0
  14. package/es/Fireworks/components/Combine.d.ts +3 -1
  15. package/es/Fireworks/components/Combine.js +9 -3
  16. package/es/Fireworks/components/Mono.js +2 -1
  17. package/es/Fireworks/components/Text.js +2 -2
  18. package/es/Fireworks/index.d.ts +2 -1
  19. package/es/Fireworks/index.js +3 -2
  20. package/es/Fireworks/style.d.ts +2 -3
  21. package/es/Fireworks/style.js +2 -3
  22. package/es/Jina/components/Avatar.js +2 -1
  23. package/es/Jina/components/Mono.js +1 -5
  24. package/es/Jina/index.d.ts +0 -4
  25. package/es/Jina/index.js +0 -4
  26. package/es/Jina/style.d.ts +1 -1
  27. package/es/Jina/style.js +1 -1
  28. package/es/PPIO/components/Avatar.js +2 -2
  29. package/es/PPIO/components/Color.js +4 -4
  30. package/es/PPIO/components/Mono.js +3 -2
  31. package/es/PPIO/components/Text.js +2 -3
  32. package/es/PPIO/components/TextCn.js +2 -5
  33. package/es/PPIO/index.d.ts +0 -4
  34. package/es/PPIO/index.js +0 -4
  35. package/es/PPIO/style.d.ts +1 -1
  36. package/es/PPIO/style.js +1 -1
  37. package/es/Vllm/style.d.ts +1 -1
  38. package/es/Vllm/style.js +1 -1
  39. package/es/Volcengine/components/Avatar.d.ts +5 -0
  40. package/es/{Jina/components/Combine.js → Volcengine/components/Avatar.js} +12 -8
  41. package/es/Volcengine/components/Color.d.ts +3 -0
  42. package/es/{Jina → Volcengine}/components/Color.js +9 -6
  43. package/es/Volcengine/components/Combine.d.ts +7 -0
  44. package/es/Volcengine/components/Combine.js +32 -0
  45. package/es/Volcengine/components/Mono.d.ts +3 -0
  46. package/es/Volcengine/components/Mono.js +53 -0
  47. package/es/Volcengine/components/Text.d.ts +3 -0
  48. package/es/Volcengine/components/Text.js +48 -0
  49. package/es/Volcengine/index.d.ts +15 -0
  50. package/es/Volcengine/index.js +16 -0
  51. package/es/Volcengine/style.d.ts +4 -0
  52. package/es/Volcengine/style.js +4 -0
  53. package/es/features/ProviderCombine/index.js +4 -6
  54. package/es/features/providerConfig.js +12 -2
  55. package/es/features/providerEnum.d.ts +2 -0
  56. package/es/features/providerEnum.js +2 -0
  57. package/es/icons.d.ts +2 -0
  58. package/es/icons.js +2 -0
  59. package/es/toc.js +46 -11
  60. package/package.json +1 -1
  61. package/es/PPIO/components/BrandColor.js +0 -44
  62. package/es/PPIO/components/BrandMono.js +0 -44
  63. /package/es/{Jina → AzureAI}/components/Color.d.ts +0 -0
  64. /package/es/{Jina → AzureAI}/components/Combine.d.ts +0 -0
  65. /package/es/{Jina/components/TextColor.d.ts → AzureAI/components/Mono.d.ts} +0 -0
  66. /package/es/{PPIO/components/BrandColor.d.ts → AzureAI/components/Text.d.ts} +0 -0
  67. /package/es/{PPIO/components/BrandMono.d.ts → Fireworks/components/Color.d.ts} +0 -0
package/es/Vllm/style.js CHANGED
@@ -1,4 +1,4 @@
1
1
  export var TITLE = 'vLLM';
2
- export var TEXT_MULTIPLE = 1;
2
+ export var TEXT_MULTIPLE = 0.85;
3
3
  export var SPACE_MULTIPLE = 0.3;
4
4
  export var COLOR_PRIMARY = '#fff';
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import { type IconAvatarProps } from "../../features/IconAvatar";
3
+ export type AvatarProps = Omit<IconAvatarProps, 'Icon'>;
4
+ declare const Avatar: import("react").NamedExoticComponent<AvatarProps>;
5
+ export default Avatar;
@@ -1,7 +1,7 @@
1
1
  'use client';
2
2
 
3
3
  function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
- var _excluded = ["type"];
4
+ var _excluded = ["background"];
5
5
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
6
6
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
7
7
  function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
@@ -10,13 +10,17 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
10
10
  function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
11
11
  function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
12
12
  import { memo } from 'react';
13
- import Mono from "./Text";
14
- import Color from "./TextColor";
13
+ import IconAvatar from "../../features/IconAvatar";
14
+ import { COLOR_PRIMARY, TITLE } from "../style";
15
+ import Color from "./Color";
15
16
  import { jsx as _jsx } from "react/jsx-runtime";
16
- var Combine = /*#__PURE__*/memo(function (_ref) {
17
- var _ref$type = _ref.type,
18
- type = _ref$type === void 0 ? 'mono' : _ref$type,
17
+ var Avatar = /*#__PURE__*/memo(function (_ref) {
18
+ var background = _ref.background,
19
19
  rest = _objectWithoutProperties(_ref, _excluded);
20
- return type === 'color' ? /*#__PURE__*/_jsx(Color, _objectSpread({}, rest)) : /*#__PURE__*/_jsx(Mono, _objectSpread({}, rest));
20
+ return /*#__PURE__*/_jsx(IconAvatar, _objectSpread({
21
+ Icon: Color,
22
+ "aria-label": TITLE,
23
+ background: background || COLOR_PRIMARY
24
+ }, rest));
21
25
  });
22
- export default Combine;
26
+ export default Avatar;
@@ -0,0 +1,3 @@
1
+ import type { IconType } from "../../types";
2
+ declare const Icon: IconType;
3
+ export default Icon;
@@ -32,14 +32,17 @@ var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
32
32
  children: [/*#__PURE__*/_jsx("title", {
33
33
  children: TITLE
34
34
  }), /*#__PURE__*/_jsx("path", {
35
- d: "M1.80913 16.9737C2.65296 16.9737 3.33701 16.2897 3.33701 15.4459C3.33701 14.602 2.65296 13.918 1.80913 13.918C0.965306 13.918 0.28125 14.602 0.28125 15.4459C0.28125 16.2897 0.965306 16.9737 1.80913 16.9737Z",
36
- fill: "#EB6161"
35
+ d: "M19.44 10.153l-2.936 11.586a.215.215 0 00.214.261h5.87a.215.215 0 00.214-.261l-2.95-11.586a.214.214 0 00-.412 0zM3.28 12.778l-2.275 8.96A.214.214 0 001.22 22h4.532a.212.212 0 00.214-.165.214.214 0 000-.097l-2.276-8.96a.214.214 0 00-.41 0z",
36
+ fill: "#00E5E5"
37
37
  }), /*#__PURE__*/_jsx("path", {
38
- d: "M6.62248 10.6329C6.82221 10.6329 6.98198 10.7927 6.98198 10.9924L6.96201 13.9184C6.96201 15.5861 5.62387 16.9442 3.95618 16.9741H3.90625V13.9284H3.91624L3.92622 11.0024C3.92622 10.8027 4.086 10.6429 4.28572 10.6429H6.62248V10.6329ZM11.316 10.6329C11.5157 10.6329 11.6755 10.7927 11.6755 10.9924V15.0868C11.6755 15.2865 11.5157 15.4463 11.316 15.4463H8.97922C8.77949 15.4463 8.61971 15.2865 8.61971 15.0868V10.9924C8.61971 10.7927 8.77949 10.6329 8.97922 10.6329H11.316ZM14.9909 10.623H15.0408C16.5387 10.6429 17.757 11.8512 17.797 13.3492V15.0768C17.797 15.2765 17.6372 15.4363 17.4375 15.4363H13.6627C13.463 15.4363 13.3032 15.2765 13.3032 15.0768V10.9825C13.3032 10.7827 13.463 10.623 13.6627 10.623H14.9909ZM21.1723 15.3963C19.9141 15.3164 18.9055 14.2679 18.9055 12.9897C18.9055 11.6615 19.984 10.583 21.3121 10.583C22.5903 10.583 23.6389 11.5816 23.7188 12.8499V15.0368C23.7188 15.2366 23.559 15.3963 23.3593 15.3963H21.1723Z",
39
- fill: "#009191"
38
+ d: "M7.29 5.359L3.148 21.738a.215.215 0 00.203.261h8.29a.214.214 0 00.215-.261L7.7 5.358a.214.214 0 00-.41 0z",
39
+ fill: "#006EFF"
40
40
  }), /*#__PURE__*/_jsx("path", {
41
- d: "M10.1426 10.0636C10.9865 10.0636 11.6705 9.37952 11.6705 8.53569C11.6705 7.69187 10.9865 7.00781 10.1426 7.00781C9.2988 7.00781 8.61475 7.69187 8.61475 8.53569C8.61475 9.37952 9.2988 10.0636 10.1426 10.0636Z",
42
- fill: "#FBCB67"
41
+ d: "M14.44.15a.214.214 0 00-.41 0L8.366 21.739a.214.214 0 00.214.261H19.9a.216.216 0 00.171-.078.214.214 0 00.044-.183L14.439.15z",
42
+ fill: "#006EFF"
43
+ }), /*#__PURE__*/_jsx("path", {
44
+ d: "M10.278 7.741L6.685 21.736a.214.214 0 00.214.264h7.17a.215.215 0 00.214-.264L10.688 7.741a.214.214 0 00-.41 0z",
45
+ fill: "#00E5E5"
43
46
  })]
44
47
  }));
45
48
  });
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { type IconCombineProps } from "../../features/IconCombine";
3
+ export interface CombineProps extends Omit<IconCombineProps, 'Icon' | 'Text'> {
4
+ type?: 'color' | 'mono';
5
+ }
6
+ declare const Combine: import("react").NamedExoticComponent<CombineProps>;
7
+ export default Combine;
@@ -0,0 +1,32 @@
1
+ 'use client';
2
+
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
+ var _excluded = ["type"];
5
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
6
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
7
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
8
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
9
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
10
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
11
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
12
+ import { memo } from 'react';
13
+ import IconCombine from "../../features/IconCombine";
14
+ import { SPACE_MULTIPLE, TEXT_MULTIPLE, TITLE } from "../style";
15
+ import Color from "./Color";
16
+ import Mono from "./Mono";
17
+ import Text from "./Text";
18
+ import { jsx as _jsx } from "react/jsx-runtime";
19
+ var Combine = /*#__PURE__*/memo(function (_ref) {
20
+ var _ref$type = _ref.type,
21
+ type = _ref$type === void 0 ? 'mono' : _ref$type,
22
+ rest = _objectWithoutProperties(_ref, _excluded);
23
+ var Icon = type === 'color' ? Color : Mono;
24
+ return /*#__PURE__*/_jsx(IconCombine, _objectSpread({
25
+ Icon: Icon,
26
+ Text: Text,
27
+ "aria-label": TITLE,
28
+ spaceMultiple: SPACE_MULTIPLE,
29
+ textMultiple: TEXT_MULTIPLE
30
+ }, rest));
31
+ });
32
+ export default Combine;
@@ -0,0 +1,3 @@
1
+ import type { IconType } from "../../types";
2
+ declare const Icon: IconType;
3
+ export default Icon;
@@ -0,0 +1,53 @@
1
+ 'use client';
2
+
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
+ var _excluded = ["size", "style"];
5
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
6
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
7
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
8
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
9
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
10
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
11
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
12
+ import { forwardRef } from 'react';
13
+ import { TITLE } from "../style";
14
+ import { jsx as _jsx } from "react/jsx-runtime";
15
+ import { jsxs as _jsxs } from "react/jsx-runtime";
16
+ var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
17
+ var _ref$size = _ref.size,
18
+ size = _ref$size === void 0 ? '1em' : _ref$size,
19
+ style = _ref.style,
20
+ rest = _objectWithoutProperties(_ref, _excluded);
21
+ return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
22
+ fill: "currentColor",
23
+ fillRule: "evenodd",
24
+ height: size,
25
+ ref: ref,
26
+ style: _objectSpread({
27
+ flex: 'none',
28
+ lineHeight: 1
29
+ }, style),
30
+ viewBox: "0 0 24 24",
31
+ width: size,
32
+ xmlns: "http://www.w3.org/2000/svg"
33
+ }, rest), {}, {
34
+ children: [/*#__PURE__*/_jsx("title", {
35
+ children: TITLE
36
+ }), /*#__PURE__*/_jsx("path", {
37
+ d: "M7.29 5.36L3.148 21.737a.215.215 0 00.203.261h8.29a.214.214 0 00.215-.261L7.7 5.359a.214.214 0 00-.41 0z",
38
+ fillOpacity: ".5"
39
+ }), /*#__PURE__*/_jsx("path", {
40
+ clipRule: "evenodd",
41
+ d: "M4.553 16.18l-1.406 5.558a.214.214 0 00.203.261h2.42-4.551a.214.214 0 01-.214-.26l2.275-8.961a.214.214 0 01.409 0l.864 3.402z"
42
+ }), /*#__PURE__*/_jsx("path", {
43
+ d: "M14.44.15a.214.214 0 00-.41 0L8.366 21.739a.214.214 0 00.214.261H19.9a.214.214 0 00.215-.261L14.44.151z",
44
+ fillOpacity: ".5"
45
+ }), /*#__PURE__*/_jsx("path", {
46
+ clipRule: "evenodd",
47
+ d: "M16.694 22h3.207a.215.215 0 00.214-.262l-1.839-6.993 1.164-4.592a.214.214 0 01.411 0l2.951 11.586a.214.214 0 01-.214.261h-5.894z"
48
+ }), /*#__PURE__*/_jsx("path", {
49
+ d: "M10.278 7.741L6.685 21.736a.214.214 0 00.214.264h7.17a.216.216 0 00.214-.166.216.216 0 000-.098L10.687 7.742a.214.214 0 00-.409 0z"
50
+ })]
51
+ }));
52
+ });
53
+ export default Icon;
@@ -0,0 +1,3 @@
1
+ import type { IconType } from "../../types";
2
+ declare const Icon: IconType;
3
+ export default Icon;
@@ -0,0 +1,48 @@
1
+ 'use client';
2
+
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
+ var _excluded = ["size", "style"];
5
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
6
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
7
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
8
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
9
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
10
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
11
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
12
+ import { forwardRef } from 'react';
13
+ import { TITLE } from "../style";
14
+ import { jsx as _jsx } from "react/jsx-runtime";
15
+ import { jsxs as _jsxs } from "react/jsx-runtime";
16
+ var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
17
+ var _ref$size = _ref.size,
18
+ size = _ref$size === void 0 ? '1em' : _ref$size,
19
+ style = _ref.style,
20
+ rest = _objectWithoutProperties(_ref, _excluded);
21
+ return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
22
+ fill: "currentColor",
23
+ fillRule: "evenodd",
24
+ height: size,
25
+ ref: ref,
26
+ style: _objectSpread({
27
+ flex: 'none',
28
+ lineHeight: 1
29
+ }, style),
30
+ viewBox: "0 0 86 24",
31
+ xmlns: "http://www.w3.org/2000/svg"
32
+ }, rest), {}, {
33
+ children: [/*#__PURE__*/_jsx("title", {
34
+ children: TITLE
35
+ }), /*#__PURE__*/_jsx("path", {
36
+ d: "M33.855 2.306h-2.031c-.123 0-.223.1-.223.222V21.07c0 .123.1.222.223.222h2.031c.123 0 .223-.1.223-.222V2.528c0-.122-.1-.222-.223-.222zM60.948 2.382h-2.134c-.124 0-.225.101-.225.226v19.16c0 .125.1.226.225.226h2.134c.125 0 .226-.101.226-.226V2.608c0-.125-.101-.226-.226-.226zM26.66 4.625h-2.027a.225.225 0 00-.225.226v16.78c0 .125.1.226.225.226h2.026a.225.225 0 00.225-.225V4.85c0-.125-.1-.226-.225-.226zM41.057 4.625h-2.026a.225.225 0 00-.225.226v16.78c0 .125.1.226.225.226h2.026a.225.225 0 00.226-.225V4.85c0-.125-.101-.226-.226-.226z"
37
+ }), /*#__PURE__*/_jsx("path", {
38
+ d: "M41.166 19.383v2.06a.416.416 0 01-.417.417H24.933a.417.417 0 01-.417-.417v-2.06h16.65zM75.17 4.53V2.923a.111.111 0 00-.112-.112h-9.67a.111.111 0 00-.111.112V4.53c0 .061.05.111.111.111h9.67c.062 0 .111-.05.111-.111zM83.938 3.392V5.14a.112.112 0 01-.111.11h-6.175a.228.228 0 01-.228-.227V3.506a.228.228 0 01.228-.228h6.175a.112.112 0 01.111.111v.003zM16.846 5.074c-.037.973-.17 3.204-.63 6.717a.23.23 0 00.225.26h2.34a.232.232 0 00.225-.203c.454-3.539.571-5.773.617-6.757a.224.224 0 00-.229-.234h-2.32a.226.226 0 00-.228.217zM5.627 5.077c.04.978.171 3.227.633 6.765a.228.228 0 01-.225.263H3.678a.234.234 0 01-.228-.203c-.457-3.567-.585-5.818-.622-6.808a.228.228 0 01.23-.237h2.34a.227.227 0 01.229.22zM65.069 6.286a.118.118 0 00-.106.114v1.87a.11.11 0 00.123.114c1.675-.158 2.91-1.359 3.076-3.176a.112.112 0 00-.03-.087.114.114 0 00-.085-.036H66.17a.111.111 0 00-.111.1c-.135.964-.674 1.087-.99 1.101zM78.377 6.44h-1.932a.12.12 0 00-.089.043.118.118 0 00-.025.094c.628 3.536 3.672 5.764 7.861 5.756a.12.12 0 00.117-.117v-1.892a.114.114 0 00-.114-.114c-2.414 0-5.048-.97-5.707-3.681a.117.117 0 00-.111-.089z"
39
+ }), /*#__PURE__*/_jsx("path", {
40
+ d: "M68.98 2.382h-2.157a.111.111 0 00-.11.112v2.25c0 .062.049.112.11.112h2.158c.061 0 .11-.05.11-.111V2.494a.111.111 0 00-.11-.112zM73.623 2.382h-2.157a.111.111 0 00-.111.112v2.25c0 .062.05.112.11.112h2.158c.062 0 .111-.05.111-.111V2.494a.111.111 0 00-.11-.112zM83.094 4.914v-.166h-2.175v.226c.02.733.066 2.448-1.101 3.66-.888.922-2.343 1.41-4.329 1.453a.114.114 0 00-.114.117l.023 1.937a.12.12 0 00.12.12c2.59-.051 4.565-.764 5.866-2.117 1.798-1.875 1.732-4.311 1.71-5.23zM79.124 2.357h-1.937a.114.114 0 00-.111.108 1.873 1.873 0 01-1.604 1.798.114.114 0 00-.097.111v1.94a.114.114 0 00.12.114 3.994 3.994 0 003.74-3.957.111.111 0 00-.11-.114zM45.186 3.053v2.03a.226.226 0 00.225.225h6.974a.108.108 0 01.109.108v2.283a.11.11 0 01-.109.111h-6.974a.226.226 0 00-.225.225v6.797a.225.225 0 00.225.225h6.974a.112.112 0 01.109.112v3.79a.224.224 0 01-.137.207.224.224 0 01-.086.018h-5.136a.226.226 0 00-.22.17l-.499 2.17a.112.112 0 00.108.136h7.77a.673.673 0 00.674-.673v-8.19a.225.225 0 00-.226-.225h-6.968a.108.108 0 01-.111-.111v-2.072a.111.111 0 01.111-.11h6.974a.225.225 0 00.225-.226v-7a.228.228 0 00-.225-.225H45.41a.226.226 0 00-.225.225zM74.57 5.632h-7.727a.112.112 0 00-.11.112v1.36a.106.106 0 00.03.08.109.109 0 00.08.032h5.739a.106.106 0 01.08.032.108.108 0 01.03.08v3.055a.112.112 0 01-.11.112h-.665a.11.11 0 00-.109.085l-.374 1.615a.113.113 0 00.022.095.112.112 0 00.087.042h2.337a.913.913 0 00.913-.913V5.858a.223.223 0 00-.223-.226zM73.358 13.62v6.417a.222.222 0 01-.226.223h-1.555a.226.226 0 00-.22.168l-.388 1.427a.114.114 0 00.112.145h4.029a.895.895 0 00.893-.896V13.62h-2.645z"
41
+ }), /*#__PURE__*/_jsx("path", {
42
+ d: "M65.81 7.984v3.156a.224.224 0 00.226.222h5.025a.222.222 0 00.222-.222V7.984a.22.22 0 00-.064-.16.224.224 0 00-.158-.066h-5.025a.225.225 0 00-.225.226zm3.587 2.111h-1.712a.114.114 0 01-.111-.111v-.859a.114.114 0 01.111-.111h1.712a.111.111 0 01.111.111v.856a.112.112 0 01-.11.114zM83.564 14.321v-1.403a.111.111 0 00-.111-.112H65.907a.111.111 0 00-.11.112v1.403c0 .062.049.112.11.112h17.546c.061 0 .111-.05.111-.112zM83.29 16.744V15.34a.111.111 0 00-.111-.111H66.184a.111.111 0 00-.111.111v1.404c0 .061.05.111.111.111H83.18c.062 0 .111-.05.111-.111zM84.212 19.15v-1.404a.111.111 0 00-.111-.112H65.263a.111.111 0 00-.112.111v1.404c0 .062.05.112.112.112H84.1c.061 0 .111-.05.111-.112zM9.97 9.724c.1 5.678-4.823 9.476-7.756 9.673A.222.222 0 002 19.62v2.06a.224.224 0 00.143.208c.028.01.058.016.088.014 2.189-.13 4.671-1.312 6.549-3.138 1.689-1.635 3.71-4.531 3.71-9.043V2.223A.222.222 0 0012.266 2H10.2a.223.223 0 00-.223.223L9.97 9.724z"
43
+ }), /*#__PURE__*/_jsx("path", {
44
+ d: "M12.475 9.724c-.103 5.678 4.83 9.476 7.753 9.673a.226.226 0 01.216.223v2.06a.225.225 0 01-.069.161.223.223 0 01-.165.061c-2.185-.13-4.67-1.312-6.545-3.138-1.69-1.635-3.71-4.531-3.71-9.043V2.223A.223.223 0 0110.178 2h2.066a.223.223 0 01.225.223l.006 7.501z"
45
+ })]
46
+ }));
47
+ });
48
+ export default Icon;
@@ -0,0 +1,15 @@
1
+ import Avatar from './components/Avatar';
2
+ import Color from './components/Color';
3
+ import Combine from './components/Combine';
4
+ import Mono from './components/Mono';
5
+ import Text from './components/Text';
6
+ export type CompoundedIcon = typeof Mono & {
7
+ Avatar: typeof Avatar;
8
+ Color: typeof Color;
9
+ Combine: typeof Combine;
10
+ Text: typeof Text;
11
+ colorPrimary: string;
12
+ title: string;
13
+ };
14
+ declare const Icons: CompoundedIcon;
15
+ export default Icons;
@@ -0,0 +1,16 @@
1
+ 'use client';
2
+
3
+ import Avatar from "./components/Avatar";
4
+ import Color from "./components/Color";
5
+ import Combine from "./components/Combine";
6
+ import Mono from "./components/Mono";
7
+ import Text from "./components/Text";
8
+ import { COLOR_PRIMARY, TITLE } from "./style";
9
+ var Icons = Mono;
10
+ Icons.Color = Color;
11
+ Icons.Text = Text;
12
+ Icons.Combine = Combine;
13
+ Icons.Avatar = Avatar;
14
+ Icons.colorPrimary = COLOR_PRIMARY;
15
+ Icons.title = TITLE;
16
+ export default Icons;
@@ -0,0 +1,4 @@
1
+ export declare const TITLE = "Volcengine";
2
+ export declare const TEXT_MULTIPLE = 0.8;
3
+ export declare const SPACE_MULTIPLE = 0.2;
4
+ export declare const COLOR_PRIMARY = "#fff";
@@ -0,0 +1,4 @@
1
+ export var TITLE = 'Volcengine';
2
+ export var TEXT_MULTIPLE = 0.8;
3
+ export var SPACE_MULTIPLE = 0.2;
4
+ export var COLOR_PRIMARY = '#fff';
@@ -18,7 +18,7 @@ import DefaultIcon from "../ProviderIcon/DefaultIcon";
18
18
  import { providerMappings } from "../providerConfig";
19
19
  import { jsx as _jsx } from "react/jsx-runtime";
20
20
  var ProviderCombine = /*#__PURE__*/forwardRef(function (_ref, ref) {
21
- var _Render$Icon;
21
+ var _Render$Icon, _Render$Icon2;
22
22
  var originProvider = _ref.provider,
23
23
  _ref$size = _ref.size,
24
24
  size = _ref$size === void 0 ? 12 : _ref$size,
@@ -45,13 +45,11 @@ var ProviderCombine = /*#__PURE__*/forwardRef(function (_ref, ref) {
45
45
  _iterator.f();
46
46
  }
47
47
  }, [originProvider]);
48
- var icon = Render !== null && Render !== void 0 && Render.Combine ? /*#__PURE__*/_jsx(Render.Combine, _objectSpread({
48
+ var iconProps = _objectSpread({
49
49
  size: size * ((Render === null || Render === void 0 ? void 0 : Render.combineMultiple) || 1),
50
50
  type: type
51
- }, (Render === null || Render === void 0 ? void 0 : Render.props) || {})) : Render !== null && Render !== void 0 && (_Render$Icon = Render.Icon) !== null && _Render$Icon !== void 0 && _Render$Icon.Combine ? /*#__PURE__*/_jsx(Render.Icon.Combine, _objectSpread({
52
- size: size * ((Render === null || Render === void 0 ? void 0 : Render.combineMultiple) || 1),
53
- type: type
54
- }, (Render === null || Render === void 0 ? void 0 : Render.props) || {})) : /*#__PURE__*/_jsx(DefaultIcon, {
51
+ }, Render === null || Render === void 0 ? void 0 : Render.props);
52
+ var icon = Render !== null && Render !== void 0 && Render.Combine ? /*#__PURE__*/_jsx(Render.Combine, _objectSpread({}, iconProps)) : Render !== null && Render !== void 0 && (_Render$Icon = Render.Icon) !== null && _Render$Icon !== void 0 && _Render$Icon.Combine ? /*#__PURE__*/_jsx(Render.Icon.Combine, _objectSpread({}, iconProps)) : Render !== null && Render !== void 0 && (_Render$Icon2 = Render.Icon) !== null && _Render$Icon2 !== void 0 && _Render$Icon2.Text ? /*#__PURE__*/_jsx(Render.Icon.Text, _objectSpread({}, iconProps)) : /*#__PURE__*/_jsx(DefaultIcon, {
55
53
  size: size
56
54
  });
57
55
  return /*#__PURE__*/_jsx(Flexbox, _objectSpread(_objectSpread({
@@ -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";
@@ -44,6 +45,7 @@ import Mistral from "../Mistral";
44
45
  import ModelScope from "../ModelScope";
45
46
  import Moonshot from "../Moonshot";
46
47
  import Novita from "../Novita";
48
+ import Nvidia from "../Nvidia";
47
49
  import Ollama from "../Ollama";
48
50
  import OpenAI from "../OpenAI";
49
51
  import OpenRouter from "../OpenRouter";
@@ -59,12 +61,12 @@ import Together from "../Together";
59
61
  import Upstage from "../Upstage";
60
62
  import VertexAI from "../VertexAI";
61
63
  import Vllm from "../Vllm";
64
+ import Volcengine from "../Volcengine";
62
65
  import Wenxin from "../Wenxin";
63
66
  import WorkersAI from "../WorkersAI";
64
67
  import XAI from "../XAI";
65
68
  import ZeroOne from "../ZeroOne";
66
69
  import Zhipu from "../Zhipu";
67
- import { Nvidia } from "../icons";
68
70
  import Combine from "./ProviderCombine/Combine";
69
71
  import { ModelProvider } from "./providerEnum";
70
72
  import { jsx as _jsx } from "react/jsx-runtime";
@@ -328,6 +330,7 @@ export var providerMappings = [{
328
330
  keywords: [ModelProvider.Higress]
329
331
  }, {
330
332
  Icon: Vllm,
333
+ combineMultiple: 0.85,
331
334
  keywords: [ModelProvider.VLLM]
332
335
  }, {
333
336
  Icon: GiteeAI,
@@ -335,15 +338,22 @@ export var providerMappings = [{
335
338
  keywords: [ModelProvider.GiteeAI]
336
339
  }, {
337
340
  Icon: ModelScope,
338
- combineMultiple: 0.95,
341
+ combineMultiple: 1.2,
339
342
  keywords: [ModelProvider.ModelScope]
340
343
  }, {
341
344
  Icon: VertexAI,
342
345
  keywords: [ModelProvider.VertexAI]
343
346
  }, {
344
347
  Icon: PPIO,
348
+ combineMultiple: 0.85,
345
349
  keywords: [ModelProvider.PPIO]
346
350
  }, {
347
351
  Icon: Jina,
348
352
  keywords: [ModelProvider.Jina]
353
+ }, {
354
+ Icon: AzureAI,
355
+ keywords: [ModelProvider.AzureAI]
356
+ }, {
357
+ Icon: Volcengine,
358
+ keywords: [ModelProvider.Volcengine]
349
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",
@@ -42,6 +43,7 @@ export declare enum ModelProvider {
42
43
  Upstage = "upstage",
43
44
  VLLM = "vllm",
44
45
  VertexAI = "vertexai",
46
+ Volcengine = "volcengine",
45
47
  Wenxin = "wenxin",
46
48
  XAI = "xai",
47
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";
@@ -42,6 +43,7 @@ export var ModelProvider = /*#__PURE__*/function (ModelProvider) {
42
43
  ModelProvider["Upstage"] = "upstage";
43
44
  ModelProvider["VLLM"] = "vllm";
44
45
  ModelProvider["VertexAI"] = "vertexai";
46
+ ModelProvider["Volcengine"] = "volcengine";
45
47
  ModelProvider["Wenxin"] = "wenxin";
46
48
  ModelProvider["XAI"] = "xai";
47
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';
@@ -121,6 +122,7 @@ export { default as VertexAI, type CompoundedIcon as VertexAIProps } from './Ver
121
122
  export { default as Vidu, type CompoundedIcon as ViduProps } from './Vidu';
122
123
  export { default as Viggle, type CompoundedIcon as ViggleProps } from './Viggle';
123
124
  export { default as Vllm, type CompoundedIcon as VllmProps } from './Vllm';
125
+ export { default as Volcengine, type CompoundedIcon as VolcengineProps } from './Volcengine';
124
126
  export { default as Wenxin, type CompoundedIcon as WenxinProps } from './Wenxin';
125
127
  export { default as WorkersAI, type CompoundedIcon as WorkersAIProps } from './WorkersAI';
126
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";
@@ -121,6 +122,7 @@ export { default as VertexAI } from "./VertexAI";
121
122
  export { default as Vidu } from "./Vidu";
122
123
  export { default as Viggle } from "./Viggle";
123
124
  export { default as Vllm } from "./Vllm";
125
+ export { default as Volcengine } from "./Volcengine";
124
126
  export { default as Wenxin } from "./Wenxin";
125
127
  export { default as WorkersAI } from "./WorkersAI";
126
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,
@@ -1112,7 +1129,7 @@ var toc = [{
1112
1129
  },
1113
1130
  "title": "InternLM"
1114
1131
  }, {
1115
- "color": "#009191",
1132
+ "color": "#000",
1116
1133
  "desc": "https://jina.ai",
1117
1134
  "docsUrl": "jina",
1118
1135
  "fullTitle": "Jina AI",
@@ -1122,8 +1139,8 @@ var toc = [{
1122
1139
  "hasAvatar": true,
1123
1140
  "hasBrand": false,
1124
1141
  "hasBrandColor": false,
1125
- "hasColor": true,
1126
- "hasCombine": true,
1142
+ "hasColor": false,
1143
+ "hasCombine": false,
1127
1144
  "hasText": true,
1128
1145
  "hasTextCn": false,
1129
1146
  "hasTextColor": false
@@ -1613,8 +1630,8 @@ var toc = [{
1613
1630
  "id": "PPIO",
1614
1631
  "param": {
1615
1632
  "hasAvatar": true,
1616
- "hasBrand": true,
1617
- "hasBrandColor": true,
1633
+ "hasBrand": false,
1634
+ "hasBrandColor": false,
1618
1635
  "hasColor": true,
1619
1636
  "hasCombine": true,
1620
1637
  "hasText": true,
@@ -1862,8 +1879,8 @@ var toc = [{
1862
1879
  "color": "#5B2AD8",
1863
1880
  "desc": "https://platform.sensenova.cn",
1864
1881
  "docsUrl": "sense-nova",
1865
- "fullTitle": "SenseNova",
1866
- "group": "provider",
1882
+ "fullTitle": "SenseNova (商汤)",
1883
+ "group": "model",
1867
1884
  "id": "SenseNova",
1868
1885
  "param": {
1869
1886
  "hasAvatar": true,
@@ -2026,7 +2043,7 @@ var toc = [{
2026
2043
  "desc": "https://cloud.tencent.com",
2027
2044
  "docsUrl": "tencent-cloud",
2028
2045
  "fullTitle": "TencentCloud (腾讯云)",
2029
- "group": "model",
2046
+ "group": "provider",
2030
2047
  "id": "TencentCloud",
2031
2048
  "param": {
2032
2049
  "hasAvatar": true,
@@ -2240,6 +2257,24 @@ var toc = [{
2240
2257
  "hasTextColor": false
2241
2258
  },
2242
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"
2243
2278
  }, {
2244
2279
  "color": "#167ADF",
2245
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.71.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",