@lobehub/icons 5.6.0 → 5.7.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.
@@ -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;
@@ -0,0 +1,25 @@
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
+ 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; }
5
+ 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; }
6
+ 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; }
7
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
8
+ 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); }
9
+ function _objectDestructuringEmpty(obj) { if (obj == null) throw new TypeError("Cannot destructure " + obj); }
10
+ import { memo } from 'react';
11
+ import IconAvatar from "../../features/IconAvatar";
12
+ import { AVATAR_BACKGROUND, AVATAR_COLOR, AVATAR_ICON_MULTIPLE, TITLE } from "../style";
13
+ import Mono from "./Mono";
14
+ import { jsx as _jsx } from "react/jsx-runtime";
15
+ var Avatar = /*#__PURE__*/memo(function (_ref) {
16
+ var rest = Object.assign({}, (_objectDestructuringEmpty(_ref), _ref));
17
+ return /*#__PURE__*/_jsx(IconAvatar, _objectSpread({
18
+ Icon: Mono,
19
+ "aria-label": TITLE,
20
+ background: AVATAR_BACKGROUND,
21
+ color: AVATAR_COLOR,
22
+ iconMultiple: AVATAR_ICON_MULTIPLE
23
+ }, rest));
24
+ });
25
+ export default Avatar;
@@ -0,0 +1,3 @@
1
+ import type { IconType } from "../../types";
2
+ declare const Icon: IconType;
3
+ export default Icon;
@@ -0,0 +1,64 @@
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 { memo } from 'react';
13
+ import { useFillId } from "../../hooks/useFillId";
14
+ import { TITLE } from "../style";
15
+ import { jsx as _jsx } from "react/jsx-runtime";
16
+ import { jsxs as _jsxs } from "react/jsx-runtime";
17
+ var Icon = /*#__PURE__*/memo(function (_ref) {
18
+ var _ref$size = _ref.size,
19
+ size = _ref$size === void 0 ? '1em' : _ref$size,
20
+ style = _ref.style,
21
+ rest = _objectWithoutProperties(_ref, _excluded);
22
+ var _useFillId = useFillId(TITLE),
23
+ id = _useFillId.id,
24
+ fill = _useFillId.fill;
25
+ return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
26
+ height: size,
27
+ style: _objectSpread({
28
+ flex: 'none',
29
+ lineHeight: 1
30
+ }, style),
31
+ viewBox: "0 0 24 24",
32
+ width: size,
33
+ xmlns: "http://www.w3.org/2000/svg"
34
+ }, rest), {}, {
35
+ children: [/*#__PURE__*/_jsx("title", {
36
+ children: TITLE
37
+ }), /*#__PURE__*/_jsx("path", {
38
+ d: "M18.821 0H5.18A5.179 5.179 0 000 5.179V18.82A5.179 5.179 0 005.179 24H18.82A5.179 5.179 0 0024 18.821V5.18A5.179 5.179 0 0018.821 0z",
39
+ fill: fill
40
+ }), /*#__PURE__*/_jsx("path", {
41
+ d: "M18.777 1.647c.28-.02.536.114.972.51 1.018.926 2.437 2.828 3.318 4.452l.34.631.482.24.11.06v3.638a5.206 5.206 0 00-5.32-1.23c-.491.166-1.021.471-2.08 1.082l-6.09 3.516c-1.057.61-1.586.916-1.975 1.259a5.208 5.208 0 00-1.493 5.572c.165.49.471 1.02 1.082 2.08l.315.543h-3.26c-.685 0-1.34-.135-1.939-.377-.169-.956-.009-1.789.469-2.335.158-.18.164-.189.13-.493a11.846 11.846 0 01-.057-1.711l.02-.444-.667-1.18C2.1 15.622 1.445 14.078 1.192 12.9c-.133-.647-.125-.934.04-1.146.1-.128.427-.261.822-.334.994-.175 3.162-.017 5.575.41l.25.043.551-.487c.915-.81 1.522-1.264 2.641-1.962 1.167-.73 2.484-1.331 3.967-1.807l.476-.152.261-.688c.937-2.471 1.896-4.293 2.58-4.9.235-.21.25-.22.422-.23z",
42
+ fill: "#fff"
43
+ }), /*#__PURE__*/_jsx("path", {
44
+ d: "M12.139 18.2a1.203 1.203 0 011.642.44l1.296 2.243a1.204 1.204 0 01-2.083 1.203l-1.296-2.243a1.203 1.203 0 01.44-1.644zM18.629 14.452a1.203 1.203 0 011.642.44l1.295 2.244a1.203 1.203 0 11-2.083 1.203l-1.295-2.243a1.203 1.203 0 01.44-1.644z",
45
+ fill: "#fff"
46
+ }), /*#__PURE__*/_jsx("defs", {
47
+ children: /*#__PURE__*/_jsxs("radialGradient", {
48
+ cx: "0",
49
+ cy: "0",
50
+ gradientTransform: "matrix(-9.00009 -16 16 -9.00009 21 24.5)",
51
+ gradientUnits: "userSpaceOnUse",
52
+ id: id,
53
+ r: "1",
54
+ children: [/*#__PURE__*/_jsx("stop", {
55
+ stopColor: "#2EA99D"
56
+ }), /*#__PURE__*/_jsx("stop", {
57
+ offset: "1",
58
+ stopColor: "#6C4DFF"
59
+ })]
60
+ })
61
+ })]
62
+ }));
63
+ });
64
+ export default Icon;
@@ -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 { COMBINE_SPACE_MULTIPLE, COMBINE_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: COMBINE_SPACE_MULTIPLE,
29
+ textMultiple: COMBINE_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,42 @@
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 { memo } 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__*/memo(function (_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
+ style: _objectSpread({
26
+ flex: 'none',
27
+ lineHeight: 1
28
+ }, style),
29
+ viewBox: "0 0 24 24",
30
+ width: size,
31
+ xmlns: "http://www.w3.org/2000/svg"
32
+ }, rest), {}, {
33
+ children: [/*#__PURE__*/_jsx("title", {
34
+ children: TITLE
35
+ }), /*#__PURE__*/_jsx("path", {
36
+ d: "M18.777 1.647c.28-.02.536.114.972.51 1.018.926 2.437 2.828 3.318 4.452l.34.631.482.24.11.06v3.638a5.206 5.206 0 00-5.32-1.23c-.491.166-1.021.471-2.08 1.082l-6.09 3.516c-1.057.61-1.586.916-1.975 1.259a5.208 5.208 0 00-1.493 5.572c.165.49.471 1.02 1.082 2.08l.315.543h-3.26c-.685 0-1.34-.135-1.939-.377-.169-.956-.009-1.789.469-2.335.158-.18.164-.189.13-.493a11.846 11.846 0 01-.057-1.711l.02-.444-.667-1.18C2.1 15.622 1.445 14.078 1.192 12.9c-.133-.647-.125-.934.04-1.146.1-.128.427-.261.822-.334.994-.175 3.162-.017 5.575.41l.25.043.551-.487c.915-.81 1.522-1.264 2.641-1.962 1.167-.73 2.484-1.331 3.967-1.807l.476-.152.261-.688c.937-2.471 1.896-4.293 2.58-4.9.235-.21.25-.22.422-.23z"
37
+ }), /*#__PURE__*/_jsx("path", {
38
+ d: "M12.139 18.2a1.203 1.203 0 011.642.44l1.296 2.243a1.204 1.204 0 01-2.083 1.203l-1.296-2.243a1.203 1.203 0 01.44-1.644zM18.629 14.452a1.203 1.203 0 011.642.44l1.295 2.244a1.203 1.203 0 11-2.083 1.203l-1.295-2.243a1.203 1.203 0 01.44-1.644z"
39
+ })]
40
+ }));
41
+ });
42
+ 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,49 @@
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 { memo } 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__*/memo(function (_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
+ style: _objectSpread({
26
+ flex: 'none',
27
+ lineHeight: 1
28
+ }, style),
29
+ viewBox: "0 0 58 24",
30
+ xmlns: "http://www.w3.org/2000/svg"
31
+ }, rest), {}, {
32
+ children: [/*#__PURE__*/_jsx("title", {
33
+ children: TITLE
34
+ }), /*#__PURE__*/_jsx("path", {
35
+ d: "M13.9 18.777c0 .314.009.639.028.973.028.324.1.62.216.887.124.267.315.487.573.659.258.162.621.243 1.09.243.468 0 .827-.081 1.076-.243.258-.172.448-.392.573-.659a2.42 2.42 0 00.215-.887c.029-.334.043-.659.043-.973V12.91h2.796v6.253c0 1.68-.386 2.905-1.16 3.678-.765.772-1.946 1.159-3.543 1.159-1.597 0-2.783-.387-3.557-1.16-.774-.772-1.162-1.998-1.162-3.677V12.91H13.9v5.867zM49.797 17.01l1.77 1.454-1.77 1.455L44.045 24v-3.473l3.023-2.077-3.023-2.063v-3.472l5.752 4.095zM57 23.917h-5.504v-2.969H57v2.969z"
36
+ }), /*#__PURE__*/_jsx("path", {
37
+ clipRule: "evenodd",
38
+ d: "M5.704 12.831c1.874 0 3.393 1.36 3.393 3.228 0 .61-.163 1.183-.448 1.678a3.598 3.598 0 011.22 2.701c0 1.995-1.624 3.458-3.625 3.458H1.54V12.83h4.164zm-1.85 8.76h2.164c.341 0 .667-.141.9-.39a1.226 1.226 0 000-1.68 1.236 1.236 0 00-.9-.389H3.853v2.459zm0-4.457h1.785a.997.997 0 100-1.998H3.853v1.998zM26.293 12.908c3.024 0 5.474 2.443 5.475 5.455 0 3.013-2.451 5.456-5.475 5.456H22.36v-10.91h3.932zm-1.31 8.299h1.31a2.848 2.848 0 002.853-2.844 2.848 2.848 0 00-2.853-2.843h-1.31v5.687zM37.089 12.908c3.023 0 5.475 2.443 5.475 5.455 0 3.013-2.452 5.456-5.475 5.456h-3.933v-10.91h3.933zm-1.311 2.612v5.687h1.31a2.848 2.848 0 002.854-2.844 2.849 2.849 0 00-2.853-2.843h-1.311zM15.793 0c.728 0 1.4.144 2.015.432a4.605 4.605 0 011.582 1.17 5.419 5.419 0 011.043 1.77c.248.669.372 1.393.372 2.173s-.124 1.51-.372 2.188a5.45 5.45 0 01-1.043 1.755c-.44.502-.967.896-1.582 1.184a4.829 4.829 0 01-2.015.418c-.735 0-1.41-.14-2.025-.418a4.8 4.8 0 01-1.571-1.184 5.571 5.571 0 01-1.032-1.755 6.325 6.325 0 01-.37-2.188c0-.78.123-1.504.37-2.173a5.54 5.54 0 011.032-1.77A4.721 4.721 0 0115.793 0zm0 2.647c-.343 0-.671.075-.983.223a2.42 2.42 0 00-.803.599c-.231.26-.415.567-.551.92a3.19 3.19 0 00-.204 1.156c0 .418.068.803.204 1.156.136.353.32.66.552.92.231.26.499.465.802.613.312.14.64.209.983.209.344 0 .668-.07.972-.209.312-.148.583-.353.815-.613.24-.26.428-.567.563-.92.136-.353.204-.738.204-1.156 0-.418-.068-.803-.204-1.156a2.855 2.855 0 00-.563-.92 2.385 2.385 0 00-.815-.599 2.183 2.183 0 00-.972-.223z"
39
+ }), /*#__PURE__*/_jsx("path", {
40
+ d: "M39.472 2.441h-3.403V8.65h3.403v2.441h-6.264V0h6.264v2.441zM9.252 2.69H6.476a2.849 2.849 0 00-2.854 2.842 2.848 2.848 0 002.854 2.843h2.776v2.613H6.476C3.452 10.988 1 8.545 1 5.532 1 2.52 3.452.077 6.476.077h2.776v2.612z"
41
+ }), /*#__PURE__*/_jsx("path", {
42
+ clipRule: "evenodd",
43
+ d: "M26.293.077c3.024 0 5.475 2.442 5.475 5.455s-2.451 5.456-5.475 5.456H22.36V.077h3.932zm-1.31 8.298h1.31a2.848 2.848 0 002.853-2.843 2.848 2.848 0 00-2.853-2.843h-1.31v5.686z"
44
+ }), /*#__PURE__*/_jsx("path", {
45
+ d: "M42.63 6.53h-3.184V4.166h3.184v2.362z"
46
+ })]
47
+ }));
48
+ });
49
+ export default Icon;
@@ -0,0 +1,16 @@
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
+ colorGradient: string;
12
+ colorPrimary: string;
13
+ title: string;
14
+ };
15
+ declare const Icons: CompoundedIcon;
16
+ export default Icons;
@@ -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
+ import { COLOR_GRADIENT, COLOR_PRIMARY, TITLE } from "./style";
7
+ var Icons = Mono;
8
+ Icons.Color = Color;
9
+ Icons.Text = Text;
10
+ Icons.Combine = Combine;
11
+ Icons.Avatar = Avatar;
12
+ Icons.colorPrimary = COLOR_PRIMARY;
13
+ Icons.colorGradient = COLOR_GRADIENT;
14
+ Icons.title = TITLE;
15
+ export default Icons;
@@ -0,0 +1,8 @@
1
+ export declare const TITLE = "CodeBuddy";
2
+ export declare const COMBINE_TEXT_MULTIPLE = 0.9;
3
+ export declare const COMBINE_SPACE_MULTIPLE = 0.2;
4
+ export declare const COLOR_PRIMARY = "#6c4dff";
5
+ export declare const COLOR_GRADIENT = "radial-gradient(66.67% 66.67% at 87.5% 102.08%, #2EA99D 0%, #6C4DFF 100%)";
6
+ export declare const AVATAR_BACKGROUND = "radial-gradient(66.67% 66.67% at 87.5% 102.08%, #2EA99D 0%, #6C4DFF 100%)";
7
+ export declare const AVATAR_COLOR = "#fff";
8
+ export declare const AVATAR_ICON_MULTIPLE = 1;
@@ -0,0 +1,10 @@
1
+ export var TITLE = 'CodeBuddy';
2
+ export var COMBINE_TEXT_MULTIPLE = 0.9;
3
+ export var COMBINE_SPACE_MULTIPLE = 0.2;
4
+ export var COLOR_PRIMARY = '#6c4dff';
5
+ export var COLOR_GRADIENT = 'radial-gradient(66.67% 66.67% at 87.5% 102.08%, #2EA99D 0%, #6C4DFF 100%)';
6
+
7
+ // Avatar constants
8
+ export var AVATAR_BACKGROUND = COLOR_GRADIENT;
9
+ export var AVATAR_COLOR = '#fff';
10
+ export var AVATAR_ICON_MULTIPLE = 1;
@@ -38,6 +38,7 @@ var IconAvatar = /*#__PURE__*/memo(function (_ref) {
38
38
  boxShadow: getAvatarShadow(isDarkMode, background),
39
39
  color: color,
40
40
  height: size,
41
+ overflow: 'hidden',
41
42
  width: size
42
43
  }, style)
43
44
  }, rest), {}, {
@@ -4,6 +4,7 @@ import CherryStudio from "../CherryStudio";
4
4
  import Claude from "../Claude";
5
5
  import ClaudeCode from "../ClaudeCode";
6
6
  import Cline from "../Cline";
7
+ import CodeBuddy from "../CodeBuddy";
7
8
  import CodeFlicker from "../CodeFlicker";
8
9
  import Codex from "../Codex";
9
10
  import Copilot from "../Copilot";
@@ -107,13 +108,7 @@ export var agentMappings = [{
107
108
  keywords: ['cline']
108
109
  }, {
109
110
  Icon: OpenCode,
110
- keywords: ['open-code', 'opencode', 'openwork']
111
- }, {
112
- Icon: OpenCode,
113
- keywords: ['open-code-go', 'opencodego', 'opencodecodingplan']
114
- }, {
115
- Icon: OpenCode,
116
- keywords: ['open-code-zen', 'opencodezen']
111
+ keywords: ['open-code', 'opencode', 'openwork', 'open-code-go', 'opencodego', 'opencodecodingplan', 'open-code-zen', 'opencodezen']
117
112
  }, {
118
113
  Icon: OpenHands,
119
114
  keywords: ['open-hands', 'openhands']
@@ -168,4 +163,7 @@ export var agentMappings = [{
168
163
  }, {
169
164
  Icon: Notion,
170
165
  keywords: ['notion']
166
+ }, {
167
+ Icon: CodeBuddy,
168
+ keywords: ['code-buddy', 'codebuddy']
171
169
  }];
package/es/icons.d.ts CHANGED
@@ -56,6 +56,7 @@ export { default as ClaudeCode, type CompoundedIcon as ClaudeCodeProps } from '.
56
56
  export { default as Cline, type CompoundedIcon as ClineProps } from './Cline';
57
57
  export { default as Clipdrop, type CompoundedIcon as ClipdropProps } from './Clipdrop';
58
58
  export { default as Cloudflare, type CompoundedIcon as CloudflareProps } from './Cloudflare';
59
+ export { default as CodeBuddy, type CompoundedIcon as CodeBuddyProps } from './CodeBuddy';
59
60
  export { default as CodeFlicker, type CompoundedIcon as CodeFlickerProps } from './CodeFlicker';
60
61
  export { default as CodeGeeX, type CompoundedIcon as CodeGeeXProps } from './CodeGeeX';
61
62
  export { default as Codex, type CompoundedIcon as CodexProps } from './Codex';
package/es/icons.js CHANGED
@@ -56,6 +56,7 @@ export { default as ClaudeCode } from "./ClaudeCode";
56
56
  export { default as Cline } from "./Cline";
57
57
  export { default as Clipdrop } from "./Clipdrop";
58
58
  export { default as Cloudflare } from "./Cloudflare";
59
+ export { default as CodeBuddy } from "./CodeBuddy";
59
60
  export { default as CodeFlicker } from "./CodeFlicker";
60
61
  export { default as CodeGeeX } from "./CodeGeeX";
61
62
  export { default as Codex } from "./Codex";
package/es/toc.json CHANGED
@@ -1 +1 @@
1
- [{"color":"#000","desc":"https://github.com/ace-step/ACE-Step","docsUrl":"ace","fullTitle":"ACE","group":"model","id":"Ace","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"ace"},{"color":"#EB1000","desc":"https://adobe.com","docsUrl":"adobe","fullTitle":"Adobe","group":"application","id":"Adobe","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Adobe"},{"color":"#EB1000","desc":"https://firefly.adobe.com","docsUrl":"adobe-firefly","fullTitle":"Firefly (Adobe)","group":"application","id":"AdobeFirefly","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AdobeFirefly"},{"color":"#0f6fff","desc":"https://agentvoice.com","docsUrl":"agent-voice","fullTitle":"AgentVoice","group":"provider","id":"AgentVoice","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AgentVoice"},{"color":"#fff","desc":"https://ag-ui.com","docsUrl":"agui","fullTitle":"AG-UI","group":"application","id":"Agui","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AG-UI"},{"color":"#f0529c","desc":"https://allenai.org/","docsUrl":"ai2","fullTitle":"Ai2","group":"model","id":"Ai2","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Ai2"},{"color":"#E91E63","colorGradient":"linear-gradient(-45deg, #F68CB2, #E91E63)","desc":"https://huggingface.co/ai21labs","docsUrl":"ai21","fullTitle":"Ai21Labs (Jamba)","group":"model","id":"Ai21","param":{"hasAvatar":true,"hasBrand":true,"hasBrandColor":true,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AI21"},{"color":"#8E47FF","desc":"https://302.ai/","docsUrl":"ai302","fullTitle":"302.AI","group":"provider","id":"Ai302","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"302.AI"},{"color":"#006ffb","colorGradient":"linear-gradient(to bottom, #12B7FA, #006ffb)","desc":"https://ai.360.com/","docsUrl":"ai360","fullTitle":"Ai360 (360智脑)","group":"provider","id":"Ai360","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AI360"},{"color":"#006FFB","desc":"https://aihubmix.com","docsUrl":"ai-hub-mix","fullTitle":"AiHubMix (推理时代)","group":"provider","id":"AiHubMix","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AiHubMix"},{"color":"#fff","desc":"https://ai-maas.wair.ac.cn","docsUrl":"ai-mass","fullTitle":"AiMass (紫东太初)","group":"provider","id":"AiMass","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AiMass"},{"color":"#0f172a","desc":"https://aionlabs.ai","docsUrl":"aion-labs","fullTitle":"AionLabs","group":"model","id":"AionLabs","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AionLabs"},{"color":"#000","desc":"https://aistudio.google.com","docsUrl":"ai-studio","fullTitle":"AI Studio (Google)","group":"provider","id":"AiStudio","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Google AI Studio"},{"color":"#000","desc":"https://chatapi.akash.network","docsUrl":"akash-chat","fullTitle":"AkashChat","group":"provider","id":"AkashChat","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AkashChat"},{"color":"#fff","desc":"https://aleph-alpha.com","docsUrl":"aleph-alpha","fullTitle":"AlephAlpha","group":"provider","id":"AlephAlpha","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AlephAlpha"},{"color":"#FF6003","desc":"https://alibaba.com","docsUrl":"alibaba","fullTitle":"Alibaba","group":"provider","id":"Alibaba","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":false,"hasText":true,"hasTextCn":true,"hasTextColor":false},"title":"Alibaba"},{"color":"#FF6A00","desc":"https://aliyun.com","docsUrl":"alibaba-cloud","fullTitle":"AlibabaCloud (阿里云)","group":"provider","id":"AlibabaCloud","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":true,"hasTextColor":false},"title":"AlibabaCloud"},{"color":"#F34E3F","desc":"https://ampcode.com","docsUrl":"amp","fullTitle":"Amp","group":"application","id":"Amp","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Amp"},{"color":"#1677ff","desc":"https://antgroup.com","docsUrl":"ant-group","fullTitle":"AntGroup","group":"provider","id":"AntGroup","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":false,"hasText":true,"hasTextCn":true,"hasTextColor":false},"title":"AntGroup"},{"color":"#F1F0E8","desc":"https://anthropic.com","docsUrl":"anthropic","fullTitle":"Anthropic","group":"provider","id":"Anthropic","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":false,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Anthropic"},{"color":"#fff","desc":"https://antigravity.google","docsUrl":"antigravity","fullTitle":"Antigravity (Google)","group":"application","id":"Antigravity","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Antigravity"},{"color":"#0163FB","desc":"https://anyscale.com","docsUrl":"anyscale","fullTitle":"Anyscale","group":"provider","id":"Anyscale","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Anyscale"},{"color":"#0d9488","desc":"https://apertis.ai","docsUrl":"apertis","fullTitle":"Apertis","group":"provider","id":"Apertis","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Apertis"},{"color":"#fff","desc":"https://apple.com","docsUrl":"apple","fullTitle":"Apple","group":"provider","id":"Apple","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Apple"},{"color":"#008C8C","desc":"https://arcee.ai/","docsUrl":"arcee","fullTitle":"Arcee","group":"model","id":"Arcee","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Arcee"},{"color":"#E8A317","desc":"https://askverdict.ai","docsUrl":"ask-verdict","fullTitle":"AskVerdict","group":"application","id":"AskVerdict","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AskVerdict"},{"color":"#2545D3","desc":"https://assemblyai.com","docsUrl":"assembly-ai","fullTitle":"AssemblyAI","group":"model","id":"AssemblyAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AssemblyAI"},{"color":"#7036F0","desc":"https://atlascloud.ai","docsUrl":"atlas-cloud","fullTitle":"AtlasCloud","group":"provider","id":"AtlasCloud","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Atlas Cloud"},{"color":"#E00054","desc":"https://github.com/AUTOMATIC1111/stable-diffusion-webui","docsUrl":"automatic","fullTitle":"Automatic1111 (SD Webui)","group":"application","id":"Automatic","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Automatic"},{"color":"#222F3E","desc":"https://aws.amazon.com","docsUrl":"aws","fullTitle":"AWS","group":"provider","id":"Aws","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AWS"},{"color":"#416FDC","desc":"https://cohere.com/research/aya","docsUrl":"aya","fullTitle":"Aya (Cohere)","group":"model","id":"Aya","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Aya"},{"color":"#fff","desc":"https://azure.microsoft.com","docsUrl":"azure","fullTitle":"Microsoft Azure","group":"provider","id":"Azure","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Azure"},{"color":"#000","desc":"https://ai.azure.com","docsUrl":"azure-ai","fullTitle":"AzureAI","group":"provider","id":"AzureAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AzureAI"},{"color":"#000","desc":"https://baai.ac.cn","docsUrl":"baai","fullTitle":"BAAI (智源研究院)","group":"model","id":"BAAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"BAAI"},{"color":"#FF6933","colorGradient":"linear-gradient(-45deg, #FF6933, #FEC13E)","desc":"https://baichuan-ai.com","docsUrl":"baichuan","fullTitle":"Baichuan (百川)","group":"model","id":"Baichuan","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Baichuan"},{"color":"#2932E1","desc":"https://baidu.com","docsUrl":"baidu","fullTitle":"Baidu","group":"provider","id":"Baidu","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":false,"hasText":true,"hasTextCn":true,"hasTextColor":false},"title":"Baidu"},{"color":"#2468f2","desc":"https://cloud.baidu.com","docsUrl":"baidu-cloud","fullTitle":"BaiduCloud (百度智能云)","group":"provider","id":"BaiduCloud","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"BaiduCloud"},{"color":"#615ced","desc":"https://bailian.console.aliyun.com","docsUrl":"bailian","fullTitle":"Bailian (阿里云百炼)","group":"provider","id":"Bailian","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"BaiLian"},{"color":"#19E76E","desc":"https://baseten.co","docsUrl":"baseten","fullTitle":"Baseten","group":"provider","id":"Baseten","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Baseten"},{"color":"#222F3E","colorGradient":"linear-gradient(45deg, #9AD8F8, #3D8FFF, #6350FB)","desc":"https://aws.amazon.com/bedrock","docsUrl":"bedrock","fullTitle":"Bedrock (AWS)","group":"provider","id":"Bedrock","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Bedrock"},{"color":"#fff","desc":"https://bfl.ai","docsUrl":"bfl","fullTitle":"Black Forest Labs (bfl)","group":"provider","id":"Bfl","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Black Forest Labs"},{"color":"#FB7299","desc":"https://github.com/bilibili","docsUrl":"bilibili","fullTitle":"Bilibili (哔哩哔哩)","group":"provider","id":"Bilibili","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"bilibili"},{"color":"#5E19B7","desc":"https://huggingface.co/IndexTeam","docsUrl":"bilibili-index","fullTitle":"Bilibili Index (Index Team)","group":"model","id":"BilibiliIndex","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"bilibili index"},{"color":"#174ae4","colorGradient":"linear-gradient(130deg, #2870EA 20%, #1B4AEF 77.5%)","desc":"https://bing.com","docsUrl":"bing","fullTitle":"Microsoft Bing","group":"application","id":"Bing","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Bing"},{"color":"#671ECC","desc":"https://bria.ai","docsUrl":"bria-ai","fullTitle":"BRIA AI","group":"provider","id":"BriaAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"BRIA AI"},{"color":"#E95513","desc":"https://ai.burncloud.com","docsUrl":"burn-cloud","fullTitle":"BurnCloud","group":"provider","id":"BurnCloud","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"BurnCloud"},{"color":"#325AB4","desc":"https://bytedance.com","docsUrl":"byte-dance","fullTitle":"ByteDance","group":"provider","id":"ByteDance","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":false,"hasText":true,"hasTextCn":true,"hasTextColor":false},"title":"ByteDance"},{"color":"#fff","desc":"https://capcut.com","docsUrl":"cap-cut","fullTitle":"CapCut","group":"application","id":"CapCut","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CapCut"},{"color":"#004331","desc":"https://centml.ai","docsUrl":"cent-ml","fullTitle":"CentML","group":"provider","id":"CentML","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CentML"},{"color":"#F15A29","desc":"https://cerebras.ai","docsUrl":"cerebras","fullTitle":"Cerebras","group":"provider","id":"Cerebras","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Cerebras"},{"color":"#4268FA","colorGradient":"linear-gradient(-45deg, #3485FF, #504AF4)","desc":"https://github.com/THUDM/ChatGLM-6B","docsUrl":"chat-glm","fullTitle":"ChatGLM (智谱)","group":"model","id":"ChatGLM","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"ChatGLM"},{"color":"#EA5E5D","desc":"https://cherry-ai.com","docsUrl":"cherry-studio","fullTitle":"Cherry Studio","group":"application","id":"CherryStudio","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CherryStudio"},{"color":"#fff","desc":"https://civitai.com","docsUrl":"civitai","fullTitle":"Civitai","group":"provider","id":"Civitai","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":true},"title":"Civitai"},{"color":"#D97757","desc":"https://claude.ai","docsUrl":"claude","fullTitle":"Claude","group":"model","id":"Claude","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Claude"},{"color":"#D97757","desc":"https://code.claude.com","docsUrl":"claude-code","fullTitle":"Claude Code","group":"application","id":"ClaudeCode","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Claude Code"},{"color":"#323B43","desc":"https://cline.bot","docsUrl":"cline","fullTitle":"Cline","group":"application","id":"Cline","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Cline"},{"color":"#000","desc":"https://clipdrop.co","docsUrl":"clipdrop","fullTitle":"Clipdrop","group":"application","id":"Clipdrop","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Clipdrop"},{"color":"#F38020","desc":"https://cloudflare.com","docsUrl":"cloudflare","fullTitle":"Cloudflare","group":"provider","id":"Cloudflare","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Cloudflare"},{"color":"#32EDDA","desc":"https://codeflicker.ai","docsUrl":"code-flicker","fullTitle":"CodeFlicker","group":"application","id":"CodeFlicker","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CodeFlicker"},{"color":"#00e7e7","colorGradient":"linear-gradient(to right, #00E7E7, #00BFFF)","desc":"https://codegeex.cn/","docsUrl":"code-gee-x","fullTitle":"CodeGeeX","group":"model","id":"CodeGeeX","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CodeGeeX"},{"color":"#fff","desc":"https://openai.com/codex","docsUrl":"codex","fullTitle":"Codex (OpenAI)","group":"model","id":"Codex","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Codex"},{"color":"#000","desc":"https://github.com/THUDM/CogVideo","docsUrl":"cog-video","fullTitle":"CogVideo","group":"model","id":"CogVideo","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CogVideo"},{"color":"#000","desc":"https://github.com/THUDM/CogView3","docsUrl":"cog-view","fullTitle":"CogView","group":"model","id":"CogView","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CogView"},{"color":"#39594D","desc":"https://cohere.com","docsUrl":"cohere","fullTitle":"Cohere","group":"provider","id":"Cohere","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Cohere"},{"color":"#F9AB00","colorGradient":"linear-gradient(-45deg, #E8710A, #F9AB00)","desc":"https://colab.research.google.com/","docsUrl":"colab","fullTitle":"Colab (Google)","group":"application","id":"Colab","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Colab"},{"color":"#00ACE2","desc":"https://cometapi.com/","docsUrl":"comet-api","fullTitle":"Comet API","group":"provider","id":"CometAPI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CometAPI"},{"color":"#F0FF41","desc":"https://comfy.org","docsUrl":"comfy-ui","fullTitle":"ComfyUI","group":"application","id":"ComfyUI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"ComfyUI"},{"color":"#39594D","desc":"https://cohere.com/blog/command","docsUrl":"command-a","fullTitle":"CommandA (Cohere)","group":"model","id":"CommandA","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CommandA"},{"color":"#fff","desc":"https://copilot.microsoft.com","docsUrl":"copilot","fullTitle":"Microsoft Copilot","group":"application","id":"Copilot","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Copilot"},{"color":"#fff","desc":"https://copilotkit.ai","docsUrl":"copilot-kit","fullTitle":"CopilotKit","group":"application","id":"CopilotKit","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CopilotKit"},{"color":"#03363D","desc":"https://github.com/coqui-ai/TTS","docsUrl":"coqui","fullTitle":"Coqui","group":"application","id":"Coqui","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Coqui"},{"color":"#4D53E8","desc":"https://coze.com","docsUrl":"coze","fullTitle":"Coze","group":"application","id":"Coze","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Coze"},{"color":"#fff","desc":"https://crewai.com","docsUrl":"crew-ai","fullTitle":"CrewAI","group":"application","id":"CrewAI","param":{"hasAvatar":true,"hasBrand":true,"hasBrandColor":true,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CrewAI"},{"color":"#fff","desc":"https://crusoe.ai","docsUrl":"crusoe","fullTitle":"Crusoe","group":"provider","id":"Crusoe","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Crusoe"},{"color":"#000","desc":"https://cursor.com","docsUrl":"cursor","fullTitle":"Cursor","group":"application","id":"Cursor","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Cursor"},{"color":"#000","desc":"https://cybercut.ai","docsUrl":"cyber-cut","fullTitle":"CyberCut","group":"application","id":"CyberCut","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CyberCut"},{"color":"#000","colorGradient":"conic-gradient(from 180deg, #FFFF67, #43FFFF, #50DA4C, #FF6E3D, #3C46FF)","desc":"https://openai.com/dall-e-3","docsUrl":"dalle","fullTitle":"DALL·E (OpenAI)","group":"model","id":"Dalle","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"DALL-E"},{"color":"#EE3D2C","desc":"https://databricks.com","docsUrl":"dbrx","fullTitle":"DBRX (Databricks)","group":"model","id":"Dbrx","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"DBRX"},{"color":"#fff","desc":"hhttps://deepai.org","docsUrl":"deep-ai","fullTitle":"DeepAI","group":"application","id":"DeepAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"DeepAI"},{"color":"#4e81ee","desc":"https://deepcogito.com","docsUrl":"deep-cogito","fullTitle":"Deep Cogito","group":"model","id":"DeepCogito","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Deep Cogito"},{"color":"#fff","desc":"https://deepinfra.com","docsUrl":"deep-infra","fullTitle":"DeepInfra","group":"provider","id":"DeepInfra","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"DeepInfra"},{"color":"#0F2B46","desc":"https://deepl.com","docsUrl":"deep-l","fullTitle":"DeepL","group":"application","id":"DeepL","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"DeepL"},{"color":"#4285F4","desc":"https://deepmind.google","docsUrl":"deep-mind","fullTitle":"DeepMind (Google)","group":"provider","id":"DeepMind","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"DeepMind"},{"color":"#4D6BFE","desc":"https://deepseek.com","docsUrl":"deep-seek","fullTitle":"DeepSeek","group":"model","id":"DeepSeek","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"DeepSeek"},{"color":"#03F","desc":"https://dify.ai","docsUrl":"dify","fullTitle":"Dify","group":"application","id":"Dify","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":true},"title":"Dify"},{"color":"#fff","desc":"https://doc2x.noedgeai.com","docsUrl":"doc2-x","fullTitle":"Doc2X","group":"application","id":"Doc2X","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Doc2X"},{"color":"#fff","desc":"https://docsearch.algolia.com","docsUrl":"doc-search","fullTitle":"DocSearch","group":"application","id":"DocSearch","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"DocSearch"},{"color":"#6186db","desc":"https://dphn.ai","docsUrl":"dolphin","fullTitle":"Dolphin (dphnAI)","group":"model","id":"Dolphin","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Dolphin"},{"color":"#FFF","desc":"https://team.doubao.com","docsUrl":"doubao","fullTitle":"Doubao (豆包)","group":"model","id":"Doubao","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Doubao"},{"color":"#000","desc":"https://lumalabs.ai/dream-machine","docsUrl":"dream-machine","fullTitle":"DreamMachine (Luma)","group":"application","id":"DreamMachine","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"DreamMachine"},{"color":"#fff","desc":"https://elevenlabs.io","docsUrl":"eleven-labs","fullTitle":"ElevenLabs","group":"model","id":"ElevenLabs","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"ElevenLabs"},{"color":"#fff","desc":"https://11x.ai","docsUrl":"eleven-x","fullTitle":"11x","group":"application","id":"ElevenX","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"11x"},{"color":"#111322","colorGradient":"linear-gradient(135deg, #5E38A5, #31018C 63%)","desc":"https://essential.ai","docsUrl":"essential-ai","fullTitle":"Essential AI","group":"model","id":"EssentialAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Essential AI"},{"color":"#1f40ed","desc":"https://exa.ai","docsUrl":"exa","fullTitle":"Exa","group":"provider","id":"Exa","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Exa"},{"color":"#EC0648","desc":"https://fal.ai","docsUrl":"fal","fullTitle":"Fal","group":"provider","id":"Fal","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Fal"},{"color":"#fff","desc":"https://tryfastgpt.ai","docsUrl":"fast-gpt","fullTitle":"FastGPT","group":"application","id":"FastGPT","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"FastGPT"},{"color":"#FFE184","desc":"https://featherless.ai","docsUrl":"featherless","fullTitle":"Featherless.ai","group":"provider","id":"Featherless","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"featherless.ai"},{"color":"#000","desc":"https://figma.com","docsUrl":"figma","fullTitle":"Figma","group":"application","id":"Figma","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Figma"},{"color":"#5019C5","desc":"https://fireworks.ai","docsUrl":"fireworks","fullTitle":"Fireworks","group":"provider","id":"Fireworks","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Fireworks"},{"color":"#fff","desc":"https://github.com/fishaudio","docsUrl":"fish-audio","fullTitle":"FishAudio (Bert)","group":"model","id":"FishAudio","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"FishAudio"},{"color":"#000","desc":"https://florafauna.ai","docsUrl":"flora","fullTitle":"Flora","group":"application","id":"Flora","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Flora"},{"color":"#fff","desc":"https://flowith.io","docsUrl":"flowith","fullTitle":"Flowith","group":"application","id":"Flowith","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Flowith"},{"color":"#fff","desc":"https://blackforestlabs.ai","docsUrl":"flux","fullTitle":"Flux (black forest labs)","group":"model","id":"Flux","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Flux"},{"color":"#101723","desc":"https://friendli.ai","docsUrl":"friendli","fullTitle":"Friendli","group":"provider","id":"Friendli","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Friendli"},{"color":"#fff","desc":"https://deepmind.google/technologies/gemini","docsUrl":"gemini","fullTitle":"Gemini (Google)","group":"model","id":"Gemini","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Gemini"},{"color":"#1E1E2E","desc":"https://geminicli.com","docsUrl":"gemini-cli","fullTitle":"Gemini CLI","group":"application","id":"GeminiCLI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Gemini CLI"},{"color":"#2E96FF","colorGradient":"linear-gradient(45deg, #446EFF 14%, #2E96FF 40%, #B1C5FF 73%)","desc":"https://ai.google.dev/gemma","docsUrl":"gemma","fullTitle":"Gemma (Google)","group":"model","id":"Gemma","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Gemma"},{"color":"#000","desc":"https://ai-assets.gitee.com/","docsUrl":"gitee-ai","fullTitle":"GiteeAI","group":"provider","id":"GiteeAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"GiteeAI"},{"color":"#000","desc":"https://github.com","docsUrl":"github","fullTitle":"Github","group":"provider","id":"Github","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Github"},{"color":"#000","desc":"https://github.com/features/copilot","docsUrl":"github-copilot","fullTitle":"Github Copilot","group":"application","id":"GithubCopilot","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"GithubCopilot"},{"color":"#000","desc":"https://glama.ai","docsUrl":"glama","fullTitle":"Glama","group":"application","id":"Glama","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Glama"},{"color":"#000","desc":"https://glif.app","docsUrl":"glif","fullTitle":"Glif","group":"application","id":"Glif","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":false,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Glif"},{"color":"#0039C6","desc":"https://huggingface.co/zai-org/GLM-4.1V-9B-Thinking","docsUrl":"glmv","fullTitle":"GLM-V","group":"model","id":"GLMV","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"GLM-V"},{"color":"#fff","desc":"https://google.com","docsUrl":"google","fullTitle":"Google","group":"provider","id":"Google","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":false,"hasText":false,"hasTextCn":false,"hasTextColor":false},"title":"Google"},{"color":"#fff","desc":"https://cloud.google.com","docsUrl":"google-cloud","fullTitle":"GoogleCloud","group":"provider","id":"GoogleCloud","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":false,"hasText":false,"hasTextCn":false,"hasTextColor":false},"title":"GoogleCloud"},{"color":"#fff","desc":"https://block.github.io/goose","docsUrl":"goose","fullTitle":"Goose (codename)","group":"application","id":"Goose","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Goose"},{"color":"#fff","desc":"https://gradio.app","docsUrl":"gradio","fullTitle":"Gradio","group":"application","id":"Gradio","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Gradio"},{"color":"#44A775","desc":"https://greptile.com","docsUrl":"greptile","fullTitle":"Greptile","group":"application","id":"Greptile","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Greptile"},{"color":"#000","desc":"https://grok.x.ai","docsUrl":"grok","fullTitle":"Grok (xAI)","group":"model","id":"Grok","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Grok"},{"color":"#F55036","desc":"https://wow.groq.com","docsUrl":"groq","fullTitle":"Groq","group":"provider","id":"Groq","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Groq"},{"color":"#fff","colorGradient":"linear-gradient(135deg, #FFAB0C, #FF5538, #E9405D, #D266DA, #D584EF)","desc":"https://hailuoai.video","docsUrl":"hailuo","fullTitle":"Hailuo (海螺)","group":"application","id":"Hailuo","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Hailuo"},{"color":"#9581ff","desc":"https://haiper.ai","docsUrl":"haiper","fullTitle":"Haiper","group":"application","id":"Haiper","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Haiper"},{"color":"#000","desc":"https://hedra.com","docsUrl":"hedra","fullTitle":"Hedra","group":"application","id":"Hedra","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Hedra"},{"color":"#fff","desc":"https://hermes-agent.nousresearch.com","docsUrl":"hermes-agent","fullTitle":"Hermes Agent","group":"application","id":"HermesAgent","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Hermes Agent"},{"color":"#3E5CF4","colorGradient":"linear-gradient(to bottom, #0418FF, #1E8CFE)","desc":"https://higress.cn/","docsUrl":"higress","fullTitle":"Higress","group":"provider","id":"Higress","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":true},"title":"Higress"},{"color":"#C7000B","desc":"https://huawei.com","docsUrl":"huawei","fullTitle":"Huawei","group":"provider","id":"Huawei","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":true,"hasTextColor":false},"title":"Huawei"},{"color":"#C7000B","desc":"https://huaweicloud.com","docsUrl":"huawei-cloud","fullTitle":"HuaweiCloud (华为云)","group":"provider","id":"HuaweiCloud","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":true,"hasTextColor":false},"title":"HuaweiCloud"},{"color":"#fff","desc":"https://huggingface.co","docsUrl":"hugging-face","fullTitle":"HuggingFace","group":"provider","id":"HuggingFace","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"HuggingFace"},{"color":"#0053e0","desc":"https://hunyuan.tencent.com","docsUrl":"hunyuan","fullTitle":"Hunyuan (腾讯混元)","group":"model","id":"Hunyuan","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Hunyuan"},{"color":"#594CE9","desc":"https://hyperbolic.xyz","docsUrl":"hyperbolic","fullTitle":"Hyperbolic","group":"provider","id":"Hyperbolic","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Hyperbolic"},{"color":"#0F62FE","desc":"https://huggingface.co/ibm-granite","docsUrl":"ibm","fullTitle":"IBM (Granite)","group":"provider","id":"IBM","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"IBM"},{"color":"#fff","desc":"https://ideogram.ai","docsUrl":"ideogram","fullTitle":"Ideogram","group":"application","id":"Ideogram","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Ideogram"},{"color":"#2A80E2","desc":"https://xfyun.cn","docsUrl":"i-fly-tek-cloud","fullTitle":"IFlyTekCloud (讯飞开放平台)","group":"provider","id":"IFlyTekCloud","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"iFlyTekCloud"},{"color":"#fff","desc":"https://inceptionlabs.ai","docsUrl":"inception","fullTitle":"Inception Labs","group":"model","id":"Inception","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Inception"},{"color":"#000","desc":"https://inference.net","docsUrl":"inference","fullTitle":"Inference","group":"provider","id":"Inference","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Inference"},{"color":"#4334F5","desc":"https://infermatic.ai","docsUrl":"infermatic","fullTitle":"Infermatic","group":"provider","id":"Infermatic","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Infermatic"},{"color":"#7952ea","desc":"https://cloud.infini-ai.com","docsUrl":"infinigence","fullTitle":"Infinigence (无问芯穹)","group":"provider","id":"Infinigence","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":true,"hasTextColor":false},"title":"Infinigence"},{"color":"#038247","desc":"https://inflection.ai","docsUrl":"inflection","fullTitle":"Inflection","group":"model","id":"Inflection","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Inflection"},{"color":"#1B3882","desc":"https://internlm.intern-ai.org.cn","docsUrl":"intern-lm","fullTitle":"InternLM","group":"provider","id":"InternLM","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"InternLM"},{"color":"#000","desc":"https://jimeng.jianying.com","docsUrl":"jimeng","fullTitle":"Jimeng (即梦)","group":"application","id":"Jimeng","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Jimeng"},{"color":"#000","desc":"https://jina.ai","docsUrl":"jina","fullTitle":"Jina AI","group":"provider","id":"Jina","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":false,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Jina"},{"color":"#47E054","desc":"https://jetbrains.com/junie","docsUrl":"junie","fullTitle":"Junie","group":"application","id":"Junie","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Junie"},{"color":"#F8F676","desc":"https://kilo.ai","docsUrl":"kilo-code","fullTitle":"Kilo Code","group":"application","id":"KiloCode","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Kilo Code"},{"color":"#000","desc":"https://kimi.moonshot.cn","docsUrl":"kimi","fullTitle":"Kimi","group":"application","id":"Kimi","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Kimi"},{"color":"#000","colorGradient":"linear-gradient(45deg, #FFF959, #0DF35E, #0BF2F9, #04A6F0)","desc":"https://klingai.com","docsUrl":"kling","fullTitle":"Kling (可灵)","group":"application","id":"Kling","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Kling"},{"color":"#6525F7","desc":"https://kluster.ai","docsUrl":"kluster","fullTitle":"Kluster","group":"provider","id":"Kluster","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Kluster"},{"color":"#83FF63","colorGradient":"radial-gradient(#CBFF00,#7EF426)","desc":"https://kolors.kuaishou.com","docsUrl":"kolors","fullTitle":"Kolors (快手可图)","group":"model","id":"Kolors","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Kolors"},{"color":"#000","desc":"https://krea.ai","docsUrl":"krea","fullTitle":"Krea","group":"application","id":"Krea","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Krea"},{"color":"#0A67FF","desc":"https://streamlake.ai/product/kat-coder","docsUrl":"kwai-kat","fullTitle":"KwaiKAT (KAT-Coder)","group":"model","id":"KwaiKAT","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":true},"title":"KwaiKAT"},{"color":"#000","desc":"https://kwaipilot.ai","docsUrl":"kwaipilot","fullTitle":"Kwaipilot","group":"model","id":"Kwaipilot","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Kwaipilot"},{"color":"#000","desc":"https://lambdalabs.com","docsUrl":"lambda","fullTitle":"Lambda","group":"provider","id":"Lambda","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Lambda"},{"color":"#7FC8FF","desc":"https://langchain.com","docsUrl":"lang-chain","fullTitle":"LangChain","group":"application","id":"LangChain","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LangChain"},{"color":"#1B1917","desc":"https://langfuse.com","docsUrl":"langfuse","fullTitle":"Langfuse","group":"application","id":"Langfuse","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Langfuse"},{"color":"#1C3C3C","desc":"https://langchain.com/LangGraph","docsUrl":"lang-graph","fullTitle":"LangGraph (LangChain)","group":"application","id":"LangGraph","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LangGraph"},{"color":"#1C3C3C","desc":"https://langchain.com/langsmith","docsUrl":"lang-smith","fullTitle":"LangSmith (LangChain)","group":"application","id":"LangSmith","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LangSmith"},{"color":"#2F80ED","desc":"https://lepton.ai","docsUrl":"lepton-ai","fullTitle":"LeptonAI","group":"provider","id":"LeptonAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LeptonAI"},{"color":"#C00C3F","desc":"https://lgresearch.ai","docsUrl":"lg","fullTitle":"LG AI (KMMLU/EXAONE)","group":"provider","id":"LG","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LG AI"},{"color":"#000","desc":"https://lightricks.com","docsUrl":"lightricks","fullTitle":"Lightricks","group":"application","id":"Lightricks","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Lightricks"},{"color":"#fff","desc":"https://liquid.ai","docsUrl":"liquid","fullTitle":"Liquid","group":"model","id":"Liquid","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Liquid"},{"color":"#000","desc":"https://livekit.io","docsUrl":"live-kit","fullTitle":"LiveKit","group":"application","id":"LiveKit","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LiveKit"},{"color":"#000","desc":"https://llamaindex.ai","docsUrl":"llama-index","fullTitle":"LlamaIndex","group":"application","id":"LlamaIndex","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LlamaIndex"},{"color":"#CB2D30","colorGradient":"linear-gradient(-45deg, #CB2D30, #ED823A)","desc":"https://github.com/haotian-liu/LLaVA","docsUrl":"l-la-va","fullTitle":"LLaVA","group":"model","id":"LLaVA","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LLaVA"},{"color":"#3F35FF","desc":"https://llmapi.ai","docsUrl":"llm-api","fullTitle":"LLM API","group":"provider","id":"LlmApi","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LLM API"},{"color":"#4338CA","colorGradient":"linear-gradient(135deg, #6C78EF, #4F14BE)","desc":"https://lmstudio.ai","docsUrl":"lm-studio","fullTitle":"LM Studio","group":"provider","id":"LmStudio","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LM Studio"},{"color":"#fff","desc":"https://lobehub.com","docsUrl":"lobe-hub","fullTitle":"LobeHub","group":"provider","id":"LobeHub","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LobeHub"},{"color":"#fff","desc":"https://longcat.chat/","docsUrl":"long-cat","fullTitle":"LongCat","group":"model","id":"LongCat","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LongCat"},{"color":"#000","desc":"https://lovable.dev","docsUrl":"lovable","fullTitle":"Lovable","group":"application","id":"Lovable","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Lovable"},{"color":"#000","desc":"https://lovart.ai","docsUrl":"lovart","fullTitle":"Lovart","group":"application","id":"Lovart","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Lovart"},{"color":"#000","desc":"https://lumalabs.ai","docsUrl":"luma","fullTitle":"Luma","group":"application","id":"Luma","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Luma"},{"color":"#fff","desc":"https://magic.dev","docsUrl":"magic","fullTitle":"Magic","group":"model","id":"Magic","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Magic"},{"color":"#ff009a","desc":"https://make.com","docsUrl":"make","fullTitle":"Make","group":"application","id":"Make","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Make"},{"color":"#fff","desc":"https://manus.im","docsUrl":"manus","fullTitle":"Manus","group":"application","id":"Manus","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Manus"},{"color":"#000","desc":"https://mastra.ai","docsUrl":"mastra","fullTitle":"Mastra","group":"application","id":"Mastra","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Mastra"},{"color":"#FFF","desc":"https://modelcontextprotocol.io","docsUrl":"mcp","fullTitle":"MCP (Model Context Protocol)","group":"application","id":"MCP","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"ModelContextProtocol"},{"color":"#1C3F6B","desc":"https://mcp.so","docsUrl":"mcp-so","fullTitle":"MCP.so","group":"application","id":"McpSo","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"MCP.so"},{"color":"#FF5C00","desc":"https://menlo.ai","docsUrl":"menlo","fullTitle":"MENLO (Lucy/Jan-nano)","group":"provider","id":"Menlo","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"MENLO"},{"color":"#000","desc":"https://meshy.ai","docsUrl":"meshy","fullTitle":"Meshy","group":"model","id":"Meshy","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Meshy"},{"color":"#1d65c1","colorGradient":"linear-gradient(45deg, #007FF8, #0668E1, #007FF8)","desc":"https://llama.meta.com","docsUrl":"meta","fullTitle":"Meta","group":"provider","id":"Meta","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Meta"},{"color":"#000","desc":"https://meta.ai","docsUrl":"meta-ai","fullTitle":"MetaAI","group":"application","id":"MetaAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"MetaAI"},{"color":"#000","desc":"https://github.com/FoundationAgents/MetaGPT","docsUrl":"meta-gpt","fullTitle":"MetaGPT","group":"application","id":"MetaGPT","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"MetaGPT"},{"color":"#00A4EF","desc":"https://microsoft.com","docsUrl":"microsoft","fullTitle":"Microsoft","group":"provider","id":"Microsoft","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Azure"},{"color":"#fff","desc":"https://midjourney.com","docsUrl":"midjourney","fullTitle":"Midjourney","group":"application","id":"Midjourney","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Midjourney"},{"color":"#F23F5D","colorGradient":"linear-gradient(to right, #E2167E, #FE603C)","desc":"https://api.minimax.chat","docsUrl":"minimax","fullTitle":"Minimax","group":"model","id":"Minimax","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Minimax"},{"color":"#FA520F","desc":"https://mistral.ai","docsUrl":"mistral","fullTitle":"Mistral","group":"model","id":"Mistral","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Mistral"},{"color":"#624AFF","desc":"https://modelscope.cn","docsUrl":"model-scope","fullTitle":"ModelScope (魔搭)","group":"provider","id":"ModelScope","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"ModelScope"},{"color":"#6841ea","colorGradient":"linear-gradient(90deg, #A83FE0, #515FFB, #2BB5DD)","desc":"https://monica.im","docsUrl":"monica","fullTitle":"Monica","group":"application","id":"Monica","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Monica"},{"color":"#16191E","desc":"https://moonshot.cn","docsUrl":"moonshot","fullTitle":"Moonshot (月之暗面)","group":"provider","id":"Moonshot","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"MoonshotAI"},{"color":"#000","desc":"https://morphllm.com","docsUrl":"morph","fullTitle":"Morph","group":"model","id":"Morph","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Morph"},{"color":"#fff","desc":"https://myshell.ai","docsUrl":"my-shell","fullTitle":"MyShell","group":"application","id":"MyShell","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"MyShell"},{"color":"#EA4B71","desc":"https://n8n.io","docsUrl":"n-8-n","fullTitle":"n8n","group":"application","id":"N8n","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"n8n"},{"color":"#FCD53F","desc":"https://gemini.google/overview/image-generation","docsUrl":"nano-banana","fullTitle":"Nano Banana (Google)","group":"model","id":"NanoBanana","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"NanoBanana"},{"color":"#DAFF33","desc":"https://nebius.com","docsUrl":"nebius","fullTitle":"Nebius","group":"provider","id":"Nebius","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":false,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Nebius"},{"color":"#dd2e57","desc":"https://newapi.ai","docsUrl":"new-api","fullTitle":"New API","group":"provider","id":"NewAPI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"New API"},{"color":"#fff","desc":"https://notebooklm.google","docsUrl":"notebook-lm","fullTitle":"NotebookLM","group":"application","id":"NotebookLM","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"NotebookLM"},{"color":"#fff","desc":"https://notion.com","docsUrl":"notion","fullTitle":"Notion","group":"application","id":"Notion","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Notion"},{"color":"#fff","desc":"https://nousresearch.com","docsUrl":"nous-research","fullTitle":"NousResearch (Hermes)","group":"provider","id":"NousResearch","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"NousResearch"},{"color":"#222F3E","colorGradient":"linear-gradient(-45deg, #ff6200, #e433ff 39.9%, #6842ff 96%)","desc":"https://nova.amazon.com/","docsUrl":"nova","fullTitle":"Nova (AWS)","group":"model","id":"Nova","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Nova"},{"color":"#E1E4FF","desc":"https://novelai.net","docsUrl":"novel-ai","fullTitle":"NovelAI","group":"application","id":"NovelAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"NovelAI"},{"color":"#23D57C","desc":"https://novita.ai/","docsUrl":"novita","fullTitle":"Novita","group":"provider","id":"Novita","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Novita AI"},{"color":"#00D1B2","desc":"https://nlpcloud.com","docsUrl":"npl-cloud","fullTitle":"NPLCloud","group":"provider","id":"NPLCloud","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"NPLCloud"},{"color":"#74B71B","desc":"https://nvidia.com/en-us/ai-on-rtx/chat-with-rtx-generative-ai/","docsUrl":"nvidia","fullTitle":"Nvidia (Nemotron)","group":"provider","id":"Nvidia","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Nvidia"},{"color":"#A88BFA","desc":"https://obsidian.md","docsUrl":"obsidian","fullTitle":"Obsidian","group":"application","id":"Obsidian","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Obsidian"},{"color":"#fff","desc":"https://ollama.ai","docsUrl":"ollama","fullTitle":"Ollama","group":"provider","id":"Ollama","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Ollama"},{"color":"#000","desc":"https://openai.com","docsUrl":"open-ai","fullTitle":"OpenAI (ChatGPT)","group":"provider","id":"OpenAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"OpenAI"},{"color":"#4A7FE3","desc":"https://huggingface.co/openchat","docsUrl":"open-chat","fullTitle":"OpenChat","group":"model","id":"OpenChat","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"OpenChat"},{"color":"#ff4d4d","desc":"https://openclaw.dev","docsUrl":"open-claw","fullTitle":"OpenClaw (MoltBot/ClawdBot)","group":"application","id":"OpenClaw","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"OpenClaw"},{"color":"#000","desc":"https://opencode.ai","docsUrl":"open-code","fullTitle":"opencode","group":"application","id":"OpenCode","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"opencode"},{"color":"#fff","desc":"https://openhands.dev","docsUrl":"open-hands","fullTitle":"OpenHands","group":"application","id":"OpenHands","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"OpenHands"},{"color":"#6566F1","desc":"https://openrouter.ai","docsUrl":"open-router","fullTitle":"OpenRouter","group":"provider","id":"OpenRouter","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"OpenRouter"},{"color":"#fff","desc":"https://openwebui.com","docsUrl":"open-web-ui","fullTitle":"OpenWebUI","group":"application","id":"OpenWebUI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"OpenWebUI"},{"color":"#FFF","desc":"https://ai.google/discover/palm2","docsUrl":"pa-lm","fullTitle":"PaLM (Google)","group":"model","id":"PaLM","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"PaLM"},{"color":"#000","desc":"https://parasail.io/","docsUrl":"parasail","fullTitle":"Parasail","group":"provider","id":"Parasail","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Parasail"},{"color":"#22B8CD","desc":"https://perplexity.ai","docsUrl":"perplexity","fullTitle":"Perplexity","group":"provider","id":"Perplexity","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Perplexity"},{"color":"#FF4017","desc":"https://phidata.com","docsUrl":"phidata","fullTitle":"Phidata","group":"application","id":"Phidata","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Phidata"},{"color":"#000","desc":"https://phind.com","docsUrl":"phind","fullTitle":"Phind","group":"model","id":"Phind","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"phind"},{"color":"#FDF7EF","desc":"https://pika.art","docsUrl":"pika","fullTitle":"Pika","group":"application","id":"Pika","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Pika"},{"color":"#9727ef","colorGradient":"linear-gradient(45deg, #3961f1, #9727ef, #ff601a)","desc":"https://app.pixverse.ai","docsUrl":"pix-verse","fullTitle":"PixVerse","group":"application","id":"PixVerse","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"PixVerse"},{"color":"#A8A6FF","desc":"https://player2.game","docsUrl":"player2","fullTitle":"Player2","group":"application","id":"Player2","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Player2"},{"color":"#000","desc":"https://poe.com","docsUrl":"poe","fullTitle":"Poe","group":"application","id":"Poe","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Poe"},{"color":"#000","desc":"https://pollinations.ai","docsUrl":"pollinations","fullTitle":"Pollinations","group":"application","id":"Pollinations","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Pollinations"},{"color":"#2874ff","desc":"https://ppinfra.com","docsUrl":"ppio","fullTitle":"PPIO","group":"provider","id":"PPIO","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":true,"hasTextColor":false},"title":"PPIO"},{"color":"#AC51FF","desc":"https://pruna.ai","docsUrl":"pruna-ai","fullTitle":"Pruna AI","group":"model","id":"PrunaAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"PrunaAI"},{"color":"#E92063","desc":"https://ai.pydantic.dev","docsUrl":"pydantic-ai","fullTitle":"PydanticAI","group":"application","id":"PydanticAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"PydanticAI"},{"color":"#1041F3","desc":"https://chatglm.cn","docsUrl":"qingyan","fullTitle":"Qingyan (智谱清言)","group":"application","id":"Qingyan","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Qingyan"},{"color":"#06AEEF","desc":"https://qiniu.com","docsUrl":"qiniu","fullTitle":"Qiniu (七牛云)","group":"provider","id":"Qiniu","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Qiniu"},{"color":"#fff","desc":"https://qoder.com","docsUrl":"qoder","fullTitle":"Qoder","group":"application","id":"Qoder","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Qoder"},{"color":"#615ced","colorGradient":"linear-gradient(to right, #6336E7, #6F69F7)","desc":"https://huggingface.co/Qwen","docsUrl":"qwen","fullTitle":"Qwen (千问)","group":"model","id":"Qwen","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Qwen"},{"color":"#853bce","colorGradient":"linear-gradient(to bottom, #A204B4, #6213B9)","desc":"https://railway.com","docsUrl":"railway","fullTitle":"Railway","group":"application","id":"Railway","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Railway"},{"color":"#000","desc":"https://recraft.ai","docsUrl":"recraft","fullTitle":"Recraft","group":"application","id":"Recraft","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Recraft"},{"color":"#000","desc":"https://relace.ai","docsUrl":"relace","fullTitle":"Relace","group":"model","id":"Relace","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Relace"},{"color":"#EA2805","desc":"https://replicate.com","docsUrl":"replicate","fullTitle":"Replicate","group":"provider","id":"Replicate","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":false,"hasText":false,"hasTextCn":false,"hasTextColor":false},"title":"Replicate"},{"color":"#FD5402","desc":"https://replit.com","docsUrl":"replit","fullTitle":"Replit","group":"application","id":"Replit","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Replit"},{"color":"#000","desc":"https://app.reve.com","docsUrl":"reve","fullTitle":"Reve","group":"model","id":"Reve","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Reve"},{"color":"#000","desc":"https://roocode.com","docsUrl":"roo-code","fullTitle":"RooCode","group":"application","id":"RooCode","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"RooCode"},{"color":"#fff","desc":"https://rsshub.app","docsUrl":"rss-hub","fullTitle":"RSSHub","group":"application","id":"RSSHub","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"RSSHub"},{"color":"#fff","desc":"https://runwayml.com","docsUrl":"runway","fullTitle":"Runway","group":"application","id":"Runway","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Runway"},{"color":"#3431C3","colorGradient":"linear-gradient(to left, #1D1A5C, #3431C3, #7361F7)","desc":"https://github.com/RWKV","docsUrl":"rwkv","fullTitle":"RWKV","group":"model","id":"Rwkv","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"RWKV"},{"color":"#EE7624","desc":"https://sambanova.ai","docsUrl":"samba-nova","fullTitle":"SambaNova","group":"provider","id":"SambaNova","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"SambaNova"},{"color":"#0066FF","desc":"https://search1api.com","docsUrl":"search1-api","fullTitle":"Search1API","group":"provider","id":"Search1API","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Search1API"},{"color":"#4f46e5","desc":"https://searchapi.io","docsUrl":"search-api","fullTitle":"SearchApi","group":"provider","id":"SearchApi","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"SearchApi"},{"color":"#5B2AD8","desc":"https://platform.sensenova.cn","docsUrl":"sense-nova","fullTitle":"SenseNova (商汤)","group":"model","id":"SenseNova","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"SenseNova"},{"color":"#6E29F6","desc":"https://siliconflow.com","docsUrl":"silicon-cloud","fullTitle":"SiliconCloud (SiliconFlow)","group":"provider","id":"SiliconCloud","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"SiliconCloud"},{"color":"#fff","desc":"https://skywork.ai","docsUrl":"skywork","fullTitle":"Skywork (天工)","group":"model","id":"Skywork","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Skywork"},{"color":"#EA580C","desc":"https://smithery.ai","docsUrl":"smithery","fullTitle":"Smithery","group":"application","id":"Smithery","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Smithery"},{"color":"#249EDC","desc":"https://snowflake.com","docsUrl":"snowflake","fullTitle":"Snowflake","group":"provider","id":"Snowflake","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Snowflake"},{"color":"#6200ee","desc":"https://sophnet.com","docsUrl":"soph-net","fullTitle":"SophNet","group":"provider","id":"SophNet","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"SophNet"},{"color":"#0968DA","colorGradient":"linear-gradient(180deg, #012659 0%, #0968DA 100%)","desc":"https://platform.openai.com/docs/models/sora-2","docsUrl":"sora","fullTitle":"Sora (OpenAI)","group":"model","id":"Sora","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Sora"},{"color":"#0070f0","desc":"https://xinghuo.xfyun.cn","docsUrl":"spark","fullTitle":"Spark (讯飞星火)","group":"model","id":"Spark","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Spark"},{"color":"#6366F1","desc":"https://speedai.com","docsUrl":"speed-ai","fullTitle":"SpeedAI","group":"provider","id":"SpeedAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"SpeedAI"},{"color":"#330066","colorGradient":"linear-gradient(to bottom, #9D39FF, #A380FF)","desc":"https://deepmind.google/technologies/gemini","docsUrl":"stability","fullTitle":"Stability (StableDiffusion)","group":"provider","id":"Stability","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Stability"},{"color":"#DF0428","desc":"https://ctyun.cn/act/xirang/deepseek","docsUrl":"state-cloud","fullTitle":"StateCloud (天翼云)","group":"provider","id":"StateCloud","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"StateCloud"},{"color":"#005AFF","colorGradient":"linear-gradient(-45deg, #0160FF, #01A9FF)","desc":"https://stepfun.com","docsUrl":"stepfun","fullTitle":"Stepfun (阶跃星辰)","group":"model","id":"Stepfun","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Stepfun"},{"color":"#464bba","desc":"https://straico.com","docsUrl":"straico","fullTitle":"Straico","group":"provider","id":"Straico","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Straico"},{"color":"#1D70FF","desc":"https://streamlake.ai","docsUrl":"stream-lake","fullTitle":"StreamLake","group":"provider","id":"StreamLake","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"StreamLake"},{"color":"#fff","desc":"https://submodel.ai","docsUrl":"sub-model","fullTitle":"SubModel","group":"provider","id":"SubModel","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"SubModel"},{"color":"#000","desc":"https://app.suno.ai","docsUrl":"suno","fullTitle":"Suno","group":"application","id":"Suno","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Suno"},{"color":"#0000FF","desc":"https://sync.so","docsUrl":"sync","fullTitle":"Sync","group":"application","id":"Sync","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Sync"},{"color":"#68C3FF","desc":"https://targon.com","docsUrl":"targon","fullTitle":"Targon","group":"provider","id":"Targon","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Targon"},{"color":"#fff","desc":"https://tavily.com","docsUrl":"tavily","fullTitle":"Tavily","group":"application","id":"Tavily","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Tavily"},{"color":"#0052D9","desc":"https://tencent.com","docsUrl":"tencent","fullTitle":"Tencent","group":"provider","id":"Tencent","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":false,"hasText":true,"hasTextCn":true,"hasTextColor":false},"title":"Tencent"},{"color":"#2151d1","desc":"https://cloud.tencent.com","docsUrl":"tencent-cloud","fullTitle":"TencentCloud (腾讯云)","group":"provider","id":"TencentCloud","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"TencentCloud"},{"color":"#0057ff","colorGradient":"linear-gradient(to right, #6865FC, #467DF9)","desc":"https://tiangong.cn","docsUrl":"tiangong","fullTitle":"Tiangong (天工)","group":"application","id":"Tiangong","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Tiangong"},{"color":"#6400FF","desc":"https://tii.ae","docsUrl":"tii","fullTitle":"Technology Innovation Institute (Falcon)","group":"provider","id":"TII","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Technology Innovation Institute"},{"color":"#fff","desc":"https://together.ai","docsUrl":"together","fullTitle":"together.ai","group":"provider","id":"Together","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"together.ai"},{"color":"#000","desc":"https://topazlabs.com","docsUrl":"topaz-labs","fullTitle":"TopazLabs","group":"application","id":"TopazLabs","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"TopazLabs"},{"color":"#32F08C","desc":"https://trae.ai","docsUrl":"trae","fullTitle":"TRAE","group":"application","id":"Trae","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"TRAE"},{"color":"#000","desc":"https://tripo3d.ai","docsUrl":"tripo","fullTitle":"Tripo","group":"application","id":"Tripo","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Tripo"},{"color":"#F7AD8A","colorGradient":"linear-gradient(-45deg, #FAD076, #F7AD8A, #C768B9)","desc":"https://turix.ai","docsUrl":"turi-x","fullTitle":"TuriX","group":"application","id":"TuriX","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"TuriX"},{"color":"#e30a5d","desc":"https://udio.com","docsUrl":"udio","fullTitle":"Udio","group":"application","id":"Udio","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Udio"},{"color":"#0ADDF8","desc":"https://unstructured.io","docsUrl":"unstructured","fullTitle":"Unstructured","group":"application","id":"Unstructured","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Unstructured"},{"color":"#908AF9","colorGradient":"linear-gradient(to bottom, #AEBCFE, #805DFA)","desc":"https://upstage.ai","docsUrl":"upstage","fullTitle":"Upstage","group":"provider","id":"Upstage","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Upsate"},{"color":"#000","desc":"https://v0.dev","docsUrl":"v-0","fullTitle":"V0 (Vercel)","group":"application","id":"V0","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":false,"hasText":false,"hasTextCn":false,"hasTextColor":false},"title":"V0"},{"color":"#3659FF","desc":"https://vectorizer.ai","docsUrl":"vectorizer-ai","fullTitle":"Vectorizer.AI","group":"application","id":"VectorizerAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Vectorizer.AI"},{"color":"#E05A2D","desc":"https://venice.ai","docsUrl":"venice","fullTitle":"Venice","group":"application","id":"Venice","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Venice"},{"color":"#000","desc":"https://sdk.vercel.ai","docsUrl":"vercel","fullTitle":"Vercel","group":"provider","id":"Vercel","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Vercel"},{"color":"#4285F4","desc":"https://cloud.google.com/generative-ai-studio","docsUrl":"vertex-ai","fullTitle":"VertexAI (Google)","group":"provider","id":"VertexAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"VertexAI"},{"color":"#22D5FF","colorGradient":"linear-gradient(to right, #40EDD8, #22D5FF, #047FFE)","desc":"https://vidu.com","docsUrl":"vidu","fullTitle":"Vidu","group":"application","id":"Vidu","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Vidu"},{"color":"#000","desc":"https://viggle.ai","docsUrl":"viggle","fullTitle":"Viggle","group":"application","id":"Viggle","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Viggle"},{"color":"#fff","desc":"https://github.com/vllm-project","docsUrl":"vllm","fullTitle":"vLLM","group":"provider","id":"Vllm","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"vLLM"},{"color":"#fff","desc":"https://volcengine.com","docsUrl":"volcengine","fullTitle":"Volcengine (火山引擎)","group":"provider","id":"Volcengine","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Volcengine"},{"color":"#012E33","desc":"https://voyageai.com","docsUrl":"voyage","fullTitle":"Voyage","group":"model","id":"Voyage","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":false,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Voyage"},{"color":"#167ADF","colorGradient":"linear-gradient(to right, #0A51C3, #23A4FB)","desc":"https://yiyan.baidu.com","docsUrl":"wenxin","fullTitle":"Wenxin (文心)","group":"model","id":"Wenxin","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Wenxin"},{"color":"#fff","desc":"https://windsurf.com","docsUrl":"windsurf","fullTitle":"Windsurf","group":"application","id":"Windsurf","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Windsurf"},{"color":"#F38020","desc":"https://developers.cloudflare.com/workers-ai","docsUrl":"workers-ai","fullTitle":"WorkersAI (Cloudflare)","group":"provider","id":"WorkersAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"WorkersAI"},{"color":"#fff","desc":"https://x.ai","docsUrl":"xai","fullTitle":"xAI","group":"provider","id":"XAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Grok"},{"color":"#000","desc":"https://platform.xiaomimimo.com","docsUrl":"xiaomi-mi-mo","fullTitle":"Xiaomi MiMo","group":"model","id":"XiaomiMiMo","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":false,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"XiaomiMiMo"},{"color":"#781ff5","desc":"https://github.com/xorbitsai/inference","docsUrl":"xinference","fullTitle":"Xinference","group":"provider","id":"Xinference","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Xinference"},{"color":"#0F1C4D","desc":"https://xpay.sh","docsUrl":"xpay","fullTitle":"Xpay","group":"provider","id":"Xpay","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"xpay"},{"color":"#fff","desc":"https://github.com/Duxiaoman-DI/XuanYuan","docsUrl":"xuanyuan","fullTitle":"Xuanyuan (度小满轩辕)","group":"model","id":"Xuanyuan","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"轩辕"},{"color":"#FB3E1C","desc":"https://ai.yandex.com","docsUrl":"yandex","fullTitle":"Yandex","group":"provider","id":"Yandex","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":false,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Yandex"},{"color":"#003425","desc":"https://github.com/01-ai/Yi","docsUrl":"yi","fullTitle":"Yi (零一万物)","group":"model","id":"Yi","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Yi"},{"color":"#000","desc":"https://youmind.ai","docsUrl":"you-mind","fullTitle":"YouMind","group":"application","id":"YouMind","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"YouMind"},{"color":"#fff","desc":"https://yuanbao.tencent.com","docsUrl":"yuanbao","fullTitle":"Yuanbao (腾讯元宝)","group":"application","id":"Yuanbao","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Yuanbao"},{"color":"#000","desc":"https://z.ai","docsUrl":"zai","fullTitle":"Z.ai","group":"application","id":"ZAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Z.ai"},{"color":"#FF4F00","desc":"https://zapier.com","docsUrl":"zapier","fullTitle":"Zapier","group":"application","id":"Zapier","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Zapier"},{"color":"#6300FF","desc":"https://zeabur.com","docsUrl":"zeabur","fullTitle":"Zeabur","group":"application","id":"Zeabur","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Zeabur"},{"color":"#E65C2C","desc":"https://zencoder.ai","docsUrl":"zencoder","fullTitle":"Zencoder","group":"application","id":"Zencoder","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Zencoder"},{"color":"#000","desc":"https://zenmux.ai","docsUrl":"zen-mux","fullTitle":"ZenMux","group":"provider","id":"ZenMux","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"ZenMux"},{"color":"#003425","desc":"https://lingyiwanwu.com/","docsUrl":"zero-one","fullTitle":"01.AI (零一万物)","group":"provider","id":"ZeroOne","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"01.AI"},{"color":"#3859FF","desc":"https://zhipuai.cn","docsUrl":"zhipu","fullTitle":"Zhipu (智谱)","group":"provider","id":"Zhipu","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Zhipu"}]
1
+ [{"color":"#000","desc":"https://github.com/ace-step/ACE-Step","docsUrl":"ace","fullTitle":"ACE","group":"model","id":"Ace","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"ace"},{"color":"#EB1000","desc":"https://adobe.com","docsUrl":"adobe","fullTitle":"Adobe","group":"application","id":"Adobe","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Adobe"},{"color":"#EB1000","desc":"https://firefly.adobe.com","docsUrl":"adobe-firefly","fullTitle":"Firefly (Adobe)","group":"application","id":"AdobeFirefly","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AdobeFirefly"},{"color":"#0f6fff","desc":"https://agentvoice.com","docsUrl":"agent-voice","fullTitle":"AgentVoice","group":"provider","id":"AgentVoice","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AgentVoice"},{"color":"#fff","desc":"https://ag-ui.com","docsUrl":"agui","fullTitle":"AG-UI","group":"application","id":"Agui","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AG-UI"},{"color":"#f0529c","desc":"https://allenai.org/","docsUrl":"ai2","fullTitle":"Ai2","group":"model","id":"Ai2","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Ai2"},{"color":"#E91E63","colorGradient":"linear-gradient(-45deg, #F68CB2, #E91E63)","desc":"https://huggingface.co/ai21labs","docsUrl":"ai21","fullTitle":"Ai21Labs (Jamba)","group":"model","id":"Ai21","param":{"hasAvatar":true,"hasBrand":true,"hasBrandColor":true,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AI21"},{"color":"#8E47FF","desc":"https://302.ai/","docsUrl":"ai302","fullTitle":"302.AI","group":"provider","id":"Ai302","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"302.AI"},{"color":"#006ffb","colorGradient":"linear-gradient(to bottom, #12B7FA, #006ffb)","desc":"https://ai.360.com/","docsUrl":"ai360","fullTitle":"Ai360 (360智脑)","group":"provider","id":"Ai360","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AI360"},{"color":"#006FFB","desc":"https://aihubmix.com","docsUrl":"ai-hub-mix","fullTitle":"AiHubMix (推理时代)","group":"provider","id":"AiHubMix","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AiHubMix"},{"color":"#fff","desc":"https://ai-maas.wair.ac.cn","docsUrl":"ai-mass","fullTitle":"AiMass (紫东太初)","group":"provider","id":"AiMass","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AiMass"},{"color":"#0f172a","desc":"https://aionlabs.ai","docsUrl":"aion-labs","fullTitle":"AionLabs","group":"model","id":"AionLabs","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AionLabs"},{"color":"#000","desc":"https://aistudio.google.com","docsUrl":"ai-studio","fullTitle":"AI Studio (Google)","group":"provider","id":"AiStudio","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Google AI Studio"},{"color":"#000","desc":"https://chatapi.akash.network","docsUrl":"akash-chat","fullTitle":"AkashChat","group":"provider","id":"AkashChat","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AkashChat"},{"color":"#fff","desc":"https://aleph-alpha.com","docsUrl":"aleph-alpha","fullTitle":"AlephAlpha","group":"provider","id":"AlephAlpha","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AlephAlpha"},{"color":"#FF6003","desc":"https://alibaba.com","docsUrl":"alibaba","fullTitle":"Alibaba","group":"provider","id":"Alibaba","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":false,"hasText":true,"hasTextCn":true,"hasTextColor":false},"title":"Alibaba"},{"color":"#FF6A00","desc":"https://aliyun.com","docsUrl":"alibaba-cloud","fullTitle":"AlibabaCloud (阿里云)","group":"provider","id":"AlibabaCloud","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":true,"hasTextColor":false},"title":"AlibabaCloud"},{"color":"#F34E3F","desc":"https://ampcode.com","docsUrl":"amp","fullTitle":"Amp","group":"application","id":"Amp","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Amp"},{"color":"#1677ff","desc":"https://antgroup.com","docsUrl":"ant-group","fullTitle":"AntGroup","group":"provider","id":"AntGroup","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":false,"hasText":true,"hasTextCn":true,"hasTextColor":false},"title":"AntGroup"},{"color":"#F1F0E8","desc":"https://anthropic.com","docsUrl":"anthropic","fullTitle":"Anthropic","group":"provider","id":"Anthropic","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":false,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Anthropic"},{"color":"#fff","desc":"https://antigravity.google","docsUrl":"antigravity","fullTitle":"Antigravity (Google)","group":"application","id":"Antigravity","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Antigravity"},{"color":"#0163FB","desc":"https://anyscale.com","docsUrl":"anyscale","fullTitle":"Anyscale","group":"provider","id":"Anyscale","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Anyscale"},{"color":"#0d9488","desc":"https://apertis.ai","docsUrl":"apertis","fullTitle":"Apertis","group":"provider","id":"Apertis","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Apertis"},{"color":"#fff","desc":"https://apple.com","docsUrl":"apple","fullTitle":"Apple","group":"provider","id":"Apple","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Apple"},{"color":"#008C8C","desc":"https://arcee.ai/","docsUrl":"arcee","fullTitle":"Arcee","group":"model","id":"Arcee","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Arcee"},{"color":"#E8A317","desc":"https://askverdict.ai","docsUrl":"ask-verdict","fullTitle":"AskVerdict","group":"application","id":"AskVerdict","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AskVerdict"},{"color":"#2545D3","desc":"https://assemblyai.com","docsUrl":"assembly-ai","fullTitle":"AssemblyAI","group":"model","id":"AssemblyAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AssemblyAI"},{"color":"#7036F0","desc":"https://atlascloud.ai","docsUrl":"atlas-cloud","fullTitle":"AtlasCloud","group":"provider","id":"AtlasCloud","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Atlas Cloud"},{"color":"#E00054","desc":"https://github.com/AUTOMATIC1111/stable-diffusion-webui","docsUrl":"automatic","fullTitle":"Automatic1111 (SD Webui)","group":"application","id":"Automatic","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Automatic"},{"color":"#222F3E","desc":"https://aws.amazon.com","docsUrl":"aws","fullTitle":"AWS","group":"provider","id":"Aws","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AWS"},{"color":"#416FDC","desc":"https://cohere.com/research/aya","docsUrl":"aya","fullTitle":"Aya (Cohere)","group":"model","id":"Aya","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Aya"},{"color":"#fff","desc":"https://azure.microsoft.com","docsUrl":"azure","fullTitle":"Microsoft Azure","group":"provider","id":"Azure","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Azure"},{"color":"#000","desc":"https://ai.azure.com","docsUrl":"azure-ai","fullTitle":"AzureAI","group":"provider","id":"AzureAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"AzureAI"},{"color":"#000","desc":"https://baai.ac.cn","docsUrl":"baai","fullTitle":"BAAI (智源研究院)","group":"model","id":"BAAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"BAAI"},{"color":"#FF6933","colorGradient":"linear-gradient(-45deg, #FF6933, #FEC13E)","desc":"https://baichuan-ai.com","docsUrl":"baichuan","fullTitle":"Baichuan (百川)","group":"model","id":"Baichuan","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Baichuan"},{"color":"#2932E1","desc":"https://baidu.com","docsUrl":"baidu","fullTitle":"Baidu","group":"provider","id":"Baidu","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":false,"hasText":true,"hasTextCn":true,"hasTextColor":false},"title":"Baidu"},{"color":"#2468f2","desc":"https://cloud.baidu.com","docsUrl":"baidu-cloud","fullTitle":"BaiduCloud (百度智能云)","group":"provider","id":"BaiduCloud","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"BaiduCloud"},{"color":"#615ced","desc":"https://bailian.console.aliyun.com","docsUrl":"bailian","fullTitle":"Bailian (阿里云百炼)","group":"provider","id":"Bailian","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"BaiLian"},{"color":"#19E76E","desc":"https://baseten.co","docsUrl":"baseten","fullTitle":"Baseten","group":"provider","id":"Baseten","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Baseten"},{"color":"#222F3E","colorGradient":"linear-gradient(45deg, #9AD8F8, #3D8FFF, #6350FB)","desc":"https://aws.amazon.com/bedrock","docsUrl":"bedrock","fullTitle":"Bedrock (AWS)","group":"provider","id":"Bedrock","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Bedrock"},{"color":"#fff","desc":"https://bfl.ai","docsUrl":"bfl","fullTitle":"Black Forest Labs (bfl)","group":"provider","id":"Bfl","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Black Forest Labs"},{"color":"#FB7299","desc":"https://github.com/bilibili","docsUrl":"bilibili","fullTitle":"Bilibili (哔哩哔哩)","group":"provider","id":"Bilibili","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"bilibili"},{"color":"#5E19B7","desc":"https://huggingface.co/IndexTeam","docsUrl":"bilibili-index","fullTitle":"Bilibili Index (Index Team)","group":"model","id":"BilibiliIndex","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"bilibili index"},{"color":"#174ae4","colorGradient":"linear-gradient(130deg, #2870EA 20%, #1B4AEF 77.5%)","desc":"https://bing.com","docsUrl":"bing","fullTitle":"Microsoft Bing","group":"application","id":"Bing","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Bing"},{"color":"#671ECC","desc":"https://bria.ai","docsUrl":"bria-ai","fullTitle":"BRIA AI","group":"provider","id":"BriaAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"BRIA AI"},{"color":"#E95513","desc":"https://ai.burncloud.com","docsUrl":"burn-cloud","fullTitle":"BurnCloud","group":"provider","id":"BurnCloud","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"BurnCloud"},{"color":"#325AB4","desc":"https://bytedance.com","docsUrl":"byte-dance","fullTitle":"ByteDance","group":"provider","id":"ByteDance","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":false,"hasText":true,"hasTextCn":true,"hasTextColor":false},"title":"ByteDance"},{"color":"#fff","desc":"https://capcut.com","docsUrl":"cap-cut","fullTitle":"CapCut","group":"application","id":"CapCut","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CapCut"},{"color":"#004331","desc":"https://centml.ai","docsUrl":"cent-ml","fullTitle":"CentML","group":"provider","id":"CentML","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CentML"},{"color":"#F15A29","desc":"https://cerebras.ai","docsUrl":"cerebras","fullTitle":"Cerebras","group":"provider","id":"Cerebras","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Cerebras"},{"color":"#4268FA","colorGradient":"linear-gradient(-45deg, #3485FF, #504AF4)","desc":"https://github.com/THUDM/ChatGLM-6B","docsUrl":"chat-glm","fullTitle":"ChatGLM (智谱)","group":"model","id":"ChatGLM","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"ChatGLM"},{"color":"#EA5E5D","desc":"https://cherry-ai.com","docsUrl":"cherry-studio","fullTitle":"Cherry Studio","group":"application","id":"CherryStudio","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CherryStudio"},{"color":"#fff","desc":"https://civitai.com","docsUrl":"civitai","fullTitle":"Civitai","group":"provider","id":"Civitai","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":true},"title":"Civitai"},{"color":"#D97757","desc":"https://claude.ai","docsUrl":"claude","fullTitle":"Claude","group":"model","id":"Claude","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Claude"},{"color":"#D97757","desc":"https://code.claude.com","docsUrl":"claude-code","fullTitle":"Claude Code","group":"application","id":"ClaudeCode","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Claude Code"},{"color":"#323B43","desc":"https://cline.bot","docsUrl":"cline","fullTitle":"Cline","group":"application","id":"Cline","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Cline"},{"color":"#000","desc":"https://clipdrop.co","docsUrl":"clipdrop","fullTitle":"Clipdrop","group":"application","id":"Clipdrop","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Clipdrop"},{"color":"#F38020","desc":"https://cloudflare.com","docsUrl":"cloudflare","fullTitle":"Cloudflare","group":"provider","id":"Cloudflare","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Cloudflare"},{"color":"#6c4dff","colorGradient":"radial-gradient(66.67% 66.67% at 87.5% 102.08%, #2EA99D 0%, #6C4DFF 100%)","desc":"https://codebuddy.ai","docsUrl":"code-buddy","fullTitle":"CodeBuddy","group":"application","id":"CodeBuddy","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CodeBuddy"},{"color":"#32EDDA","desc":"https://codeflicker.ai","docsUrl":"code-flicker","fullTitle":"CodeFlicker","group":"application","id":"CodeFlicker","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CodeFlicker"},{"color":"#00e7e7","colorGradient":"linear-gradient(to right, #00E7E7, #00BFFF)","desc":"https://codegeex.cn/","docsUrl":"code-gee-x","fullTitle":"CodeGeeX","group":"model","id":"CodeGeeX","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CodeGeeX"},{"color":"#fff","desc":"https://openai.com/codex","docsUrl":"codex","fullTitle":"Codex (OpenAI)","group":"model","id":"Codex","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Codex"},{"color":"#000","desc":"https://github.com/THUDM/CogVideo","docsUrl":"cog-video","fullTitle":"CogVideo","group":"model","id":"CogVideo","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CogVideo"},{"color":"#000","desc":"https://github.com/THUDM/CogView3","docsUrl":"cog-view","fullTitle":"CogView","group":"model","id":"CogView","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CogView"},{"color":"#39594D","desc":"https://cohere.com","docsUrl":"cohere","fullTitle":"Cohere","group":"provider","id":"Cohere","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Cohere"},{"color":"#F9AB00","colorGradient":"linear-gradient(-45deg, #E8710A, #F9AB00)","desc":"https://colab.research.google.com/","docsUrl":"colab","fullTitle":"Colab (Google)","group":"application","id":"Colab","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Colab"},{"color":"#00ACE2","desc":"https://cometapi.com/","docsUrl":"comet-api","fullTitle":"Comet API","group":"provider","id":"CometAPI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CometAPI"},{"color":"#F0FF41","desc":"https://comfy.org","docsUrl":"comfy-ui","fullTitle":"ComfyUI","group":"application","id":"ComfyUI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"ComfyUI"},{"color":"#39594D","desc":"https://cohere.com/blog/command","docsUrl":"command-a","fullTitle":"CommandA (Cohere)","group":"model","id":"CommandA","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CommandA"},{"color":"#fff","desc":"https://copilot.microsoft.com","docsUrl":"copilot","fullTitle":"Microsoft Copilot","group":"application","id":"Copilot","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Copilot"},{"color":"#fff","desc":"https://copilotkit.ai","docsUrl":"copilot-kit","fullTitle":"CopilotKit","group":"application","id":"CopilotKit","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CopilotKit"},{"color":"#03363D","desc":"https://github.com/coqui-ai/TTS","docsUrl":"coqui","fullTitle":"Coqui","group":"application","id":"Coqui","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Coqui"},{"color":"#4D53E8","desc":"https://coze.com","docsUrl":"coze","fullTitle":"Coze","group":"application","id":"Coze","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Coze"},{"color":"#fff","desc":"https://crewai.com","docsUrl":"crew-ai","fullTitle":"CrewAI","group":"application","id":"CrewAI","param":{"hasAvatar":true,"hasBrand":true,"hasBrandColor":true,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CrewAI"},{"color":"#fff","desc":"https://crusoe.ai","docsUrl":"crusoe","fullTitle":"Crusoe","group":"provider","id":"Crusoe","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Crusoe"},{"color":"#000","desc":"https://cursor.com","docsUrl":"cursor","fullTitle":"Cursor","group":"application","id":"Cursor","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Cursor"},{"color":"#000","desc":"https://cybercut.ai","docsUrl":"cyber-cut","fullTitle":"CyberCut","group":"application","id":"CyberCut","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"CyberCut"},{"color":"#000","colorGradient":"conic-gradient(from 180deg, #FFFF67, #43FFFF, #50DA4C, #FF6E3D, #3C46FF)","desc":"https://openai.com/dall-e-3","docsUrl":"dalle","fullTitle":"DALL·E (OpenAI)","group":"model","id":"Dalle","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"DALL-E"},{"color":"#EE3D2C","desc":"https://databricks.com","docsUrl":"dbrx","fullTitle":"DBRX (Databricks)","group":"model","id":"Dbrx","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"DBRX"},{"color":"#fff","desc":"hhttps://deepai.org","docsUrl":"deep-ai","fullTitle":"DeepAI","group":"application","id":"DeepAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"DeepAI"},{"color":"#4e81ee","desc":"https://deepcogito.com","docsUrl":"deep-cogito","fullTitle":"Deep Cogito","group":"model","id":"DeepCogito","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Deep Cogito"},{"color":"#fff","desc":"https://deepinfra.com","docsUrl":"deep-infra","fullTitle":"DeepInfra","group":"provider","id":"DeepInfra","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"DeepInfra"},{"color":"#0F2B46","desc":"https://deepl.com","docsUrl":"deep-l","fullTitle":"DeepL","group":"application","id":"DeepL","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"DeepL"},{"color":"#4285F4","desc":"https://deepmind.google","docsUrl":"deep-mind","fullTitle":"DeepMind (Google)","group":"provider","id":"DeepMind","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"DeepMind"},{"color":"#4D6BFE","desc":"https://deepseek.com","docsUrl":"deep-seek","fullTitle":"DeepSeek","group":"model","id":"DeepSeek","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"DeepSeek"},{"color":"#03F","desc":"https://dify.ai","docsUrl":"dify","fullTitle":"Dify","group":"application","id":"Dify","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":true},"title":"Dify"},{"color":"#fff","desc":"https://doc2x.noedgeai.com","docsUrl":"doc2-x","fullTitle":"Doc2X","group":"application","id":"Doc2X","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Doc2X"},{"color":"#fff","desc":"https://docsearch.algolia.com","docsUrl":"doc-search","fullTitle":"DocSearch","group":"application","id":"DocSearch","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"DocSearch"},{"color":"#6186db","desc":"https://dphn.ai","docsUrl":"dolphin","fullTitle":"Dolphin (dphnAI)","group":"model","id":"Dolphin","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Dolphin"},{"color":"#FFF","desc":"https://team.doubao.com","docsUrl":"doubao","fullTitle":"Doubao (豆包)","group":"model","id":"Doubao","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Doubao"},{"color":"#000","desc":"https://lumalabs.ai/dream-machine","docsUrl":"dream-machine","fullTitle":"DreamMachine (Luma)","group":"application","id":"DreamMachine","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"DreamMachine"},{"color":"#fff","desc":"https://elevenlabs.io","docsUrl":"eleven-labs","fullTitle":"ElevenLabs","group":"model","id":"ElevenLabs","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"ElevenLabs"},{"color":"#fff","desc":"https://11x.ai","docsUrl":"eleven-x","fullTitle":"11x","group":"application","id":"ElevenX","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"11x"},{"color":"#111322","colorGradient":"linear-gradient(135deg, #5E38A5, #31018C 63%)","desc":"https://essential.ai","docsUrl":"essential-ai","fullTitle":"Essential AI","group":"model","id":"EssentialAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Essential AI"},{"color":"#1f40ed","desc":"https://exa.ai","docsUrl":"exa","fullTitle":"Exa","group":"provider","id":"Exa","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Exa"},{"color":"#EC0648","desc":"https://fal.ai","docsUrl":"fal","fullTitle":"Fal","group":"provider","id":"Fal","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Fal"},{"color":"#fff","desc":"https://tryfastgpt.ai","docsUrl":"fast-gpt","fullTitle":"FastGPT","group":"application","id":"FastGPT","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"FastGPT"},{"color":"#FFE184","desc":"https://featherless.ai","docsUrl":"featherless","fullTitle":"Featherless.ai","group":"provider","id":"Featherless","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"featherless.ai"},{"color":"#000","desc":"https://figma.com","docsUrl":"figma","fullTitle":"Figma","group":"application","id":"Figma","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Figma"},{"color":"#5019C5","desc":"https://fireworks.ai","docsUrl":"fireworks","fullTitle":"Fireworks","group":"provider","id":"Fireworks","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Fireworks"},{"color":"#fff","desc":"https://github.com/fishaudio","docsUrl":"fish-audio","fullTitle":"FishAudio (Bert)","group":"model","id":"FishAudio","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"FishAudio"},{"color":"#000","desc":"https://florafauna.ai","docsUrl":"flora","fullTitle":"Flora","group":"application","id":"Flora","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Flora"},{"color":"#fff","desc":"https://flowith.io","docsUrl":"flowith","fullTitle":"Flowith","group":"application","id":"Flowith","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Flowith"},{"color":"#fff","desc":"https://blackforestlabs.ai","docsUrl":"flux","fullTitle":"Flux (black forest labs)","group":"model","id":"Flux","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Flux"},{"color":"#101723","desc":"https://friendli.ai","docsUrl":"friendli","fullTitle":"Friendli","group":"provider","id":"Friendli","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Friendli"},{"color":"#fff","desc":"https://deepmind.google/technologies/gemini","docsUrl":"gemini","fullTitle":"Gemini (Google)","group":"model","id":"Gemini","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Gemini"},{"color":"#1E1E2E","desc":"https://geminicli.com","docsUrl":"gemini-cli","fullTitle":"Gemini CLI","group":"application","id":"GeminiCLI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Gemini CLI"},{"color":"#2E96FF","colorGradient":"linear-gradient(45deg, #446EFF 14%, #2E96FF 40%, #B1C5FF 73%)","desc":"https://ai.google.dev/gemma","docsUrl":"gemma","fullTitle":"Gemma (Google)","group":"model","id":"Gemma","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Gemma"},{"color":"#000","desc":"https://ai-assets.gitee.com/","docsUrl":"gitee-ai","fullTitle":"GiteeAI","group":"provider","id":"GiteeAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"GiteeAI"},{"color":"#000","desc":"https://github.com","docsUrl":"github","fullTitle":"Github","group":"provider","id":"Github","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Github"},{"color":"#000","desc":"https://github.com/features/copilot","docsUrl":"github-copilot","fullTitle":"Github Copilot","group":"application","id":"GithubCopilot","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"GithubCopilot"},{"color":"#000","desc":"https://glama.ai","docsUrl":"glama","fullTitle":"Glama","group":"application","id":"Glama","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Glama"},{"color":"#000","desc":"https://glif.app","docsUrl":"glif","fullTitle":"Glif","group":"application","id":"Glif","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":false,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Glif"},{"color":"#0039C6","desc":"https://huggingface.co/zai-org/GLM-4.1V-9B-Thinking","docsUrl":"glmv","fullTitle":"GLM-V","group":"model","id":"GLMV","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"GLM-V"},{"color":"#fff","desc":"https://google.com","docsUrl":"google","fullTitle":"Google","group":"provider","id":"Google","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":false,"hasText":false,"hasTextCn":false,"hasTextColor":false},"title":"Google"},{"color":"#fff","desc":"https://cloud.google.com","docsUrl":"google-cloud","fullTitle":"GoogleCloud","group":"provider","id":"GoogleCloud","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":false,"hasText":false,"hasTextCn":false,"hasTextColor":false},"title":"GoogleCloud"},{"color":"#fff","desc":"https://block.github.io/goose","docsUrl":"goose","fullTitle":"Goose (codename)","group":"application","id":"Goose","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Goose"},{"color":"#fff","desc":"https://gradio.app","docsUrl":"gradio","fullTitle":"Gradio","group":"application","id":"Gradio","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Gradio"},{"color":"#44A775","desc":"https://greptile.com","docsUrl":"greptile","fullTitle":"Greptile","group":"application","id":"Greptile","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Greptile"},{"color":"#000","desc":"https://grok.x.ai","docsUrl":"grok","fullTitle":"Grok (xAI)","group":"model","id":"Grok","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Grok"},{"color":"#F55036","desc":"https://wow.groq.com","docsUrl":"groq","fullTitle":"Groq","group":"provider","id":"Groq","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Groq"},{"color":"#fff","colorGradient":"linear-gradient(135deg, #FFAB0C, #FF5538, #E9405D, #D266DA, #D584EF)","desc":"https://hailuoai.video","docsUrl":"hailuo","fullTitle":"Hailuo (海螺)","group":"application","id":"Hailuo","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Hailuo"},{"color":"#9581ff","desc":"https://haiper.ai","docsUrl":"haiper","fullTitle":"Haiper","group":"application","id":"Haiper","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Haiper"},{"color":"#000","desc":"https://hedra.com","docsUrl":"hedra","fullTitle":"Hedra","group":"application","id":"Hedra","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Hedra"},{"color":"#fff","desc":"https://hermes-agent.nousresearch.com","docsUrl":"hermes-agent","fullTitle":"Hermes Agent","group":"application","id":"HermesAgent","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Hermes Agent"},{"color":"#3E5CF4","colorGradient":"linear-gradient(to bottom, #0418FF, #1E8CFE)","desc":"https://higress.cn/","docsUrl":"higress","fullTitle":"Higress","group":"provider","id":"Higress","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":true},"title":"Higress"},{"color":"#C7000B","desc":"https://huawei.com","docsUrl":"huawei","fullTitle":"Huawei","group":"provider","id":"Huawei","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":true,"hasTextColor":false},"title":"Huawei"},{"color":"#C7000B","desc":"https://huaweicloud.com","docsUrl":"huawei-cloud","fullTitle":"HuaweiCloud (华为云)","group":"provider","id":"HuaweiCloud","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":true,"hasTextColor":false},"title":"HuaweiCloud"},{"color":"#fff","desc":"https://huggingface.co","docsUrl":"hugging-face","fullTitle":"HuggingFace","group":"provider","id":"HuggingFace","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"HuggingFace"},{"color":"#0053e0","desc":"https://hunyuan.tencent.com","docsUrl":"hunyuan","fullTitle":"Hunyuan (腾讯混元)","group":"model","id":"Hunyuan","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Hunyuan"},{"color":"#594CE9","desc":"https://hyperbolic.xyz","docsUrl":"hyperbolic","fullTitle":"Hyperbolic","group":"provider","id":"Hyperbolic","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Hyperbolic"},{"color":"#0F62FE","desc":"https://huggingface.co/ibm-granite","docsUrl":"ibm","fullTitle":"IBM (Granite)","group":"provider","id":"IBM","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"IBM"},{"color":"#fff","desc":"https://ideogram.ai","docsUrl":"ideogram","fullTitle":"Ideogram","group":"application","id":"Ideogram","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Ideogram"},{"color":"#2A80E2","desc":"https://xfyun.cn","docsUrl":"i-fly-tek-cloud","fullTitle":"IFlyTekCloud (讯飞开放平台)","group":"provider","id":"IFlyTekCloud","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"iFlyTekCloud"},{"color":"#fff","desc":"https://inceptionlabs.ai","docsUrl":"inception","fullTitle":"Inception Labs","group":"model","id":"Inception","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Inception"},{"color":"#000","desc":"https://inference.net","docsUrl":"inference","fullTitle":"Inference","group":"provider","id":"Inference","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Inference"},{"color":"#4334F5","desc":"https://infermatic.ai","docsUrl":"infermatic","fullTitle":"Infermatic","group":"provider","id":"Infermatic","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Infermatic"},{"color":"#7952ea","desc":"https://cloud.infini-ai.com","docsUrl":"infinigence","fullTitle":"Infinigence (无问芯穹)","group":"provider","id":"Infinigence","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":true,"hasTextColor":false},"title":"Infinigence"},{"color":"#038247","desc":"https://inflection.ai","docsUrl":"inflection","fullTitle":"Inflection","group":"model","id":"Inflection","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Inflection"},{"color":"#1B3882","desc":"https://internlm.intern-ai.org.cn","docsUrl":"intern-lm","fullTitle":"InternLM","group":"provider","id":"InternLM","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"InternLM"},{"color":"#000","desc":"https://jimeng.jianying.com","docsUrl":"jimeng","fullTitle":"Jimeng (即梦)","group":"application","id":"Jimeng","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Jimeng"},{"color":"#000","desc":"https://jina.ai","docsUrl":"jina","fullTitle":"Jina AI","group":"provider","id":"Jina","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":false,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Jina"},{"color":"#47E054","desc":"https://jetbrains.com/junie","docsUrl":"junie","fullTitle":"Junie","group":"application","id":"Junie","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Junie"},{"color":"#F8F676","desc":"https://kilo.ai","docsUrl":"kilo-code","fullTitle":"Kilo Code","group":"application","id":"KiloCode","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Kilo Code"},{"color":"#000","desc":"https://kimi.moonshot.cn","docsUrl":"kimi","fullTitle":"Kimi","group":"application","id":"Kimi","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Kimi"},{"color":"#000","colorGradient":"linear-gradient(45deg, #FFF959, #0DF35E, #0BF2F9, #04A6F0)","desc":"https://klingai.com","docsUrl":"kling","fullTitle":"Kling (可灵)","group":"application","id":"Kling","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Kling"},{"color":"#6525F7","desc":"https://kluster.ai","docsUrl":"kluster","fullTitle":"Kluster","group":"provider","id":"Kluster","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Kluster"},{"color":"#83FF63","colorGradient":"radial-gradient(#CBFF00,#7EF426)","desc":"https://kolors.kuaishou.com","docsUrl":"kolors","fullTitle":"Kolors (快手可图)","group":"model","id":"Kolors","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Kolors"},{"color":"#000","desc":"https://krea.ai","docsUrl":"krea","fullTitle":"Krea","group":"application","id":"Krea","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Krea"},{"color":"#0A67FF","desc":"https://streamlake.ai/product/kat-coder","docsUrl":"kwai-kat","fullTitle":"KwaiKAT (KAT-Coder)","group":"model","id":"KwaiKAT","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":true},"title":"KwaiKAT"},{"color":"#000","desc":"https://kwaipilot.ai","docsUrl":"kwaipilot","fullTitle":"Kwaipilot","group":"model","id":"Kwaipilot","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Kwaipilot"},{"color":"#000","desc":"https://lambdalabs.com","docsUrl":"lambda","fullTitle":"Lambda","group":"provider","id":"Lambda","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Lambda"},{"color":"#7FC8FF","desc":"https://langchain.com","docsUrl":"lang-chain","fullTitle":"LangChain","group":"application","id":"LangChain","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LangChain"},{"color":"#1B1917","desc":"https://langfuse.com","docsUrl":"langfuse","fullTitle":"Langfuse","group":"application","id":"Langfuse","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Langfuse"},{"color":"#1C3C3C","desc":"https://langchain.com/LangGraph","docsUrl":"lang-graph","fullTitle":"LangGraph (LangChain)","group":"application","id":"LangGraph","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LangGraph"},{"color":"#1C3C3C","desc":"https://langchain.com/langsmith","docsUrl":"lang-smith","fullTitle":"LangSmith (LangChain)","group":"application","id":"LangSmith","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LangSmith"},{"color":"#2F80ED","desc":"https://lepton.ai","docsUrl":"lepton-ai","fullTitle":"LeptonAI","group":"provider","id":"LeptonAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LeptonAI"},{"color":"#C00C3F","desc":"https://lgresearch.ai","docsUrl":"lg","fullTitle":"LG AI (KMMLU/EXAONE)","group":"provider","id":"LG","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LG AI"},{"color":"#000","desc":"https://lightricks.com","docsUrl":"lightricks","fullTitle":"Lightricks","group":"application","id":"Lightricks","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Lightricks"},{"color":"#fff","desc":"https://liquid.ai","docsUrl":"liquid","fullTitle":"Liquid","group":"model","id":"Liquid","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Liquid"},{"color":"#000","desc":"https://livekit.io","docsUrl":"live-kit","fullTitle":"LiveKit","group":"application","id":"LiveKit","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LiveKit"},{"color":"#000","desc":"https://llamaindex.ai","docsUrl":"llama-index","fullTitle":"LlamaIndex","group":"application","id":"LlamaIndex","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LlamaIndex"},{"color":"#CB2D30","colorGradient":"linear-gradient(-45deg, #CB2D30, #ED823A)","desc":"https://github.com/haotian-liu/LLaVA","docsUrl":"l-la-va","fullTitle":"LLaVA","group":"model","id":"LLaVA","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LLaVA"},{"color":"#3F35FF","desc":"https://llmapi.ai","docsUrl":"llm-api","fullTitle":"LLM API","group":"provider","id":"LlmApi","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LLM API"},{"color":"#4338CA","colorGradient":"linear-gradient(135deg, #6C78EF, #4F14BE)","desc":"https://lmstudio.ai","docsUrl":"lm-studio","fullTitle":"LM Studio","group":"provider","id":"LmStudio","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LM Studio"},{"color":"#fff","desc":"https://lobehub.com","docsUrl":"lobe-hub","fullTitle":"LobeHub","group":"provider","id":"LobeHub","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LobeHub"},{"color":"#fff","desc":"https://longcat.chat/","docsUrl":"long-cat","fullTitle":"LongCat","group":"model","id":"LongCat","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"LongCat"},{"color":"#000","desc":"https://lovable.dev","docsUrl":"lovable","fullTitle":"Lovable","group":"application","id":"Lovable","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Lovable"},{"color":"#000","desc":"https://lovart.ai","docsUrl":"lovart","fullTitle":"Lovart","group":"application","id":"Lovart","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Lovart"},{"color":"#000","desc":"https://lumalabs.ai","docsUrl":"luma","fullTitle":"Luma","group":"application","id":"Luma","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Luma"},{"color":"#fff","desc":"https://magic.dev","docsUrl":"magic","fullTitle":"Magic","group":"model","id":"Magic","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Magic"},{"color":"#ff009a","desc":"https://make.com","docsUrl":"make","fullTitle":"Make","group":"application","id":"Make","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Make"},{"color":"#fff","desc":"https://manus.im","docsUrl":"manus","fullTitle":"Manus","group":"application","id":"Manus","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Manus"},{"color":"#000","desc":"https://mastra.ai","docsUrl":"mastra","fullTitle":"Mastra","group":"application","id":"Mastra","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Mastra"},{"color":"#FFF","desc":"https://modelcontextprotocol.io","docsUrl":"mcp","fullTitle":"MCP (Model Context Protocol)","group":"application","id":"MCP","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"ModelContextProtocol"},{"color":"#1C3F6B","desc":"https://mcp.so","docsUrl":"mcp-so","fullTitle":"MCP.so","group":"application","id":"McpSo","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"MCP.so"},{"color":"#FF5C00","desc":"https://menlo.ai","docsUrl":"menlo","fullTitle":"MENLO (Lucy/Jan-nano)","group":"provider","id":"Menlo","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"MENLO"},{"color":"#000","desc":"https://meshy.ai","docsUrl":"meshy","fullTitle":"Meshy","group":"model","id":"Meshy","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Meshy"},{"color":"#1d65c1","colorGradient":"linear-gradient(45deg, #007FF8, #0668E1, #007FF8)","desc":"https://llama.meta.com","docsUrl":"meta","fullTitle":"Meta","group":"provider","id":"Meta","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Meta"},{"color":"#000","desc":"https://meta.ai","docsUrl":"meta-ai","fullTitle":"MetaAI","group":"application","id":"MetaAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"MetaAI"},{"color":"#000","desc":"https://github.com/FoundationAgents/MetaGPT","docsUrl":"meta-gpt","fullTitle":"MetaGPT","group":"application","id":"MetaGPT","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"MetaGPT"},{"color":"#00A4EF","desc":"https://microsoft.com","docsUrl":"microsoft","fullTitle":"Microsoft","group":"provider","id":"Microsoft","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Azure"},{"color":"#fff","desc":"https://midjourney.com","docsUrl":"midjourney","fullTitle":"Midjourney","group":"application","id":"Midjourney","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Midjourney"},{"color":"#F23F5D","colorGradient":"linear-gradient(to right, #E2167E, #FE603C)","desc":"https://api.minimax.chat","docsUrl":"minimax","fullTitle":"Minimax","group":"model","id":"Minimax","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Minimax"},{"color":"#FA520F","desc":"https://mistral.ai","docsUrl":"mistral","fullTitle":"Mistral","group":"model","id":"Mistral","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Mistral"},{"color":"#624AFF","desc":"https://modelscope.cn","docsUrl":"model-scope","fullTitle":"ModelScope (魔搭)","group":"provider","id":"ModelScope","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"ModelScope"},{"color":"#6841ea","colorGradient":"linear-gradient(90deg, #A83FE0, #515FFB, #2BB5DD)","desc":"https://monica.im","docsUrl":"monica","fullTitle":"Monica","group":"application","id":"Monica","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Monica"},{"color":"#16191E","desc":"https://moonshot.cn","docsUrl":"moonshot","fullTitle":"Moonshot (月之暗面)","group":"provider","id":"Moonshot","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"MoonshotAI"},{"color":"#000","desc":"https://morphllm.com","docsUrl":"morph","fullTitle":"Morph","group":"model","id":"Morph","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Morph"},{"color":"#fff","desc":"https://myshell.ai","docsUrl":"my-shell","fullTitle":"MyShell","group":"application","id":"MyShell","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"MyShell"},{"color":"#EA4B71","desc":"https://n8n.io","docsUrl":"n-8-n","fullTitle":"n8n","group":"application","id":"N8n","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"n8n"},{"color":"#FCD53F","desc":"https://gemini.google/overview/image-generation","docsUrl":"nano-banana","fullTitle":"Nano Banana (Google)","group":"model","id":"NanoBanana","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"NanoBanana"},{"color":"#DAFF33","desc":"https://nebius.com","docsUrl":"nebius","fullTitle":"Nebius","group":"provider","id":"Nebius","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":false,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Nebius"},{"color":"#dd2e57","desc":"https://newapi.ai","docsUrl":"new-api","fullTitle":"New API","group":"provider","id":"NewAPI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"New API"},{"color":"#fff","desc":"https://notebooklm.google","docsUrl":"notebook-lm","fullTitle":"NotebookLM","group":"application","id":"NotebookLM","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"NotebookLM"},{"color":"#fff","desc":"https://notion.com","docsUrl":"notion","fullTitle":"Notion","group":"application","id":"Notion","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Notion"},{"color":"#fff","desc":"https://nousresearch.com","docsUrl":"nous-research","fullTitle":"NousResearch (Hermes)","group":"provider","id":"NousResearch","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"NousResearch"},{"color":"#222F3E","colorGradient":"linear-gradient(-45deg, #ff6200, #e433ff 39.9%, #6842ff 96%)","desc":"https://nova.amazon.com/","docsUrl":"nova","fullTitle":"Nova (AWS)","group":"model","id":"Nova","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Nova"},{"color":"#E1E4FF","desc":"https://novelai.net","docsUrl":"novel-ai","fullTitle":"NovelAI","group":"application","id":"NovelAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"NovelAI"},{"color":"#23D57C","desc":"https://novita.ai/","docsUrl":"novita","fullTitle":"Novita","group":"provider","id":"Novita","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Novita AI"},{"color":"#00D1B2","desc":"https://nlpcloud.com","docsUrl":"npl-cloud","fullTitle":"NPLCloud","group":"provider","id":"NPLCloud","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"NPLCloud"},{"color":"#74B71B","desc":"https://nvidia.com/en-us/ai-on-rtx/chat-with-rtx-generative-ai/","docsUrl":"nvidia","fullTitle":"Nvidia (Nemotron)","group":"provider","id":"Nvidia","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Nvidia"},{"color":"#A88BFA","desc":"https://obsidian.md","docsUrl":"obsidian","fullTitle":"Obsidian","group":"application","id":"Obsidian","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Obsidian"},{"color":"#fff","desc":"https://ollama.ai","docsUrl":"ollama","fullTitle":"Ollama","group":"provider","id":"Ollama","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Ollama"},{"color":"#000","desc":"https://openai.com","docsUrl":"open-ai","fullTitle":"OpenAI (ChatGPT)","group":"provider","id":"OpenAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"OpenAI"},{"color":"#4A7FE3","desc":"https://huggingface.co/openchat","docsUrl":"open-chat","fullTitle":"OpenChat","group":"model","id":"OpenChat","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"OpenChat"},{"color":"#ff4d4d","desc":"https://openclaw.dev","docsUrl":"open-claw","fullTitle":"OpenClaw (MoltBot/ClawdBot)","group":"application","id":"OpenClaw","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"OpenClaw"},{"color":"#000","desc":"https://opencode.ai","docsUrl":"open-code","fullTitle":"opencode","group":"application","id":"OpenCode","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"opencode"},{"color":"#fff","desc":"https://openhands.dev","docsUrl":"open-hands","fullTitle":"OpenHands","group":"application","id":"OpenHands","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"OpenHands"},{"color":"#6566F1","desc":"https://openrouter.ai","docsUrl":"open-router","fullTitle":"OpenRouter","group":"provider","id":"OpenRouter","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"OpenRouter"},{"color":"#fff","desc":"https://openwebui.com","docsUrl":"open-web-ui","fullTitle":"OpenWebUI","group":"application","id":"OpenWebUI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"OpenWebUI"},{"color":"#FFF","desc":"https://ai.google/discover/palm2","docsUrl":"pa-lm","fullTitle":"PaLM (Google)","group":"model","id":"PaLM","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"PaLM"},{"color":"#000","desc":"https://parasail.io/","docsUrl":"parasail","fullTitle":"Parasail","group":"provider","id":"Parasail","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Parasail"},{"color":"#22B8CD","desc":"https://perplexity.ai","docsUrl":"perplexity","fullTitle":"Perplexity","group":"provider","id":"Perplexity","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Perplexity"},{"color":"#FF4017","desc":"https://phidata.com","docsUrl":"phidata","fullTitle":"Phidata","group":"application","id":"Phidata","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Phidata"},{"color":"#000","desc":"https://phind.com","docsUrl":"phind","fullTitle":"Phind","group":"model","id":"Phind","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"phind"},{"color":"#FDF7EF","desc":"https://pika.art","docsUrl":"pika","fullTitle":"Pika","group":"application","id":"Pika","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Pika"},{"color":"#9727ef","colorGradient":"linear-gradient(45deg, #3961f1, #9727ef, #ff601a)","desc":"https://app.pixverse.ai","docsUrl":"pix-verse","fullTitle":"PixVerse","group":"application","id":"PixVerse","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"PixVerse"},{"color":"#A8A6FF","desc":"https://player2.game","docsUrl":"player2","fullTitle":"Player2","group":"application","id":"Player2","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Player2"},{"color":"#000","desc":"https://poe.com","docsUrl":"poe","fullTitle":"Poe","group":"application","id":"Poe","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Poe"},{"color":"#000","desc":"https://pollinations.ai","docsUrl":"pollinations","fullTitle":"Pollinations","group":"application","id":"Pollinations","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Pollinations"},{"color":"#2874ff","desc":"https://ppinfra.com","docsUrl":"ppio","fullTitle":"PPIO","group":"provider","id":"PPIO","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":true,"hasTextColor":false},"title":"PPIO"},{"color":"#AC51FF","desc":"https://pruna.ai","docsUrl":"pruna-ai","fullTitle":"Pruna AI","group":"model","id":"PrunaAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"PrunaAI"},{"color":"#E92063","desc":"https://ai.pydantic.dev","docsUrl":"pydantic-ai","fullTitle":"PydanticAI","group":"application","id":"PydanticAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"PydanticAI"},{"color":"#1041F3","desc":"https://chatglm.cn","docsUrl":"qingyan","fullTitle":"Qingyan (智谱清言)","group":"application","id":"Qingyan","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Qingyan"},{"color":"#06AEEF","desc":"https://qiniu.com","docsUrl":"qiniu","fullTitle":"Qiniu (七牛云)","group":"provider","id":"Qiniu","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Qiniu"},{"color":"#fff","desc":"https://qoder.com","docsUrl":"qoder","fullTitle":"Qoder","group":"application","id":"Qoder","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Qoder"},{"color":"#615ced","colorGradient":"linear-gradient(to right, #6336E7, #6F69F7)","desc":"https://huggingface.co/Qwen","docsUrl":"qwen","fullTitle":"Qwen (千问)","group":"model","id":"Qwen","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Qwen"},{"color":"#853bce","colorGradient":"linear-gradient(to bottom, #A204B4, #6213B9)","desc":"https://railway.com","docsUrl":"railway","fullTitle":"Railway","group":"application","id":"Railway","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Railway"},{"color":"#000","desc":"https://recraft.ai","docsUrl":"recraft","fullTitle":"Recraft","group":"application","id":"Recraft","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Recraft"},{"color":"#000","desc":"https://relace.ai","docsUrl":"relace","fullTitle":"Relace","group":"model","id":"Relace","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Relace"},{"color":"#EA2805","desc":"https://replicate.com","docsUrl":"replicate","fullTitle":"Replicate","group":"provider","id":"Replicate","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":false,"hasText":false,"hasTextCn":false,"hasTextColor":false},"title":"Replicate"},{"color":"#FD5402","desc":"https://replit.com","docsUrl":"replit","fullTitle":"Replit","group":"application","id":"Replit","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Replit"},{"color":"#000","desc":"https://app.reve.com","docsUrl":"reve","fullTitle":"Reve","group":"model","id":"Reve","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Reve"},{"color":"#000","desc":"https://roocode.com","docsUrl":"roo-code","fullTitle":"RooCode","group":"application","id":"RooCode","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"RooCode"},{"color":"#fff","desc":"https://rsshub.app","docsUrl":"rss-hub","fullTitle":"RSSHub","group":"application","id":"RSSHub","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"RSSHub"},{"color":"#fff","desc":"https://runwayml.com","docsUrl":"runway","fullTitle":"Runway","group":"application","id":"Runway","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Runway"},{"color":"#3431C3","colorGradient":"linear-gradient(to left, #1D1A5C, #3431C3, #7361F7)","desc":"https://github.com/RWKV","docsUrl":"rwkv","fullTitle":"RWKV","group":"model","id":"Rwkv","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"RWKV"},{"color":"#EE7624","desc":"https://sambanova.ai","docsUrl":"samba-nova","fullTitle":"SambaNova","group":"provider","id":"SambaNova","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"SambaNova"},{"color":"#0066FF","desc":"https://search1api.com","docsUrl":"search1-api","fullTitle":"Search1API","group":"provider","id":"Search1API","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Search1API"},{"color":"#4f46e5","desc":"https://searchapi.io","docsUrl":"search-api","fullTitle":"SearchApi","group":"provider","id":"SearchApi","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"SearchApi"},{"color":"#5B2AD8","desc":"https://platform.sensenova.cn","docsUrl":"sense-nova","fullTitle":"SenseNova (商汤)","group":"model","id":"SenseNova","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"SenseNova"},{"color":"#6E29F6","desc":"https://siliconflow.com","docsUrl":"silicon-cloud","fullTitle":"SiliconCloud (SiliconFlow)","group":"provider","id":"SiliconCloud","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"SiliconCloud"},{"color":"#fff","desc":"https://skywork.ai","docsUrl":"skywork","fullTitle":"Skywork (天工)","group":"model","id":"Skywork","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Skywork"},{"color":"#EA580C","desc":"https://smithery.ai","docsUrl":"smithery","fullTitle":"Smithery","group":"application","id":"Smithery","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Smithery"},{"color":"#249EDC","desc":"https://snowflake.com","docsUrl":"snowflake","fullTitle":"Snowflake","group":"provider","id":"Snowflake","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Snowflake"},{"color":"#6200ee","desc":"https://sophnet.com","docsUrl":"soph-net","fullTitle":"SophNet","group":"provider","id":"SophNet","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"SophNet"},{"color":"#0968DA","colorGradient":"linear-gradient(180deg, #012659 0%, #0968DA 100%)","desc":"https://platform.openai.com/docs/models/sora-2","docsUrl":"sora","fullTitle":"Sora (OpenAI)","group":"model","id":"Sora","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Sora"},{"color":"#0070f0","desc":"https://xinghuo.xfyun.cn","docsUrl":"spark","fullTitle":"Spark (讯飞星火)","group":"model","id":"Spark","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Spark"},{"color":"#6366F1","desc":"https://speedai.com","docsUrl":"speed-ai","fullTitle":"SpeedAI","group":"provider","id":"SpeedAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"SpeedAI"},{"color":"#330066","colorGradient":"linear-gradient(to bottom, #9D39FF, #A380FF)","desc":"https://deepmind.google/technologies/gemini","docsUrl":"stability","fullTitle":"Stability (StableDiffusion)","group":"provider","id":"Stability","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Stability"},{"color":"#DF0428","desc":"https://ctyun.cn/act/xirang/deepseek","docsUrl":"state-cloud","fullTitle":"StateCloud (天翼云)","group":"provider","id":"StateCloud","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"StateCloud"},{"color":"#005AFF","colorGradient":"linear-gradient(-45deg, #0160FF, #01A9FF)","desc":"https://stepfun.com","docsUrl":"stepfun","fullTitle":"Stepfun (阶跃星辰)","group":"model","id":"Stepfun","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Stepfun"},{"color":"#464bba","desc":"https://straico.com","docsUrl":"straico","fullTitle":"Straico","group":"provider","id":"Straico","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Straico"},{"color":"#1D70FF","desc":"https://streamlake.ai","docsUrl":"stream-lake","fullTitle":"StreamLake","group":"provider","id":"StreamLake","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"StreamLake"},{"color":"#fff","desc":"https://submodel.ai","docsUrl":"sub-model","fullTitle":"SubModel","group":"provider","id":"SubModel","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"SubModel"},{"color":"#000","desc":"https://app.suno.ai","docsUrl":"suno","fullTitle":"Suno","group":"application","id":"Suno","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Suno"},{"color":"#0000FF","desc":"https://sync.so","docsUrl":"sync","fullTitle":"Sync","group":"application","id":"Sync","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Sync"},{"color":"#68C3FF","desc":"https://targon.com","docsUrl":"targon","fullTitle":"Targon","group":"provider","id":"Targon","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Targon"},{"color":"#fff","desc":"https://tavily.com","docsUrl":"tavily","fullTitle":"Tavily","group":"application","id":"Tavily","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Tavily"},{"color":"#0052D9","desc":"https://tencent.com","docsUrl":"tencent","fullTitle":"Tencent","group":"provider","id":"Tencent","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":true,"hasColor":true,"hasCombine":false,"hasText":true,"hasTextCn":true,"hasTextColor":false},"title":"Tencent"},{"color":"#2151d1","desc":"https://cloud.tencent.com","docsUrl":"tencent-cloud","fullTitle":"TencentCloud (腾讯云)","group":"provider","id":"TencentCloud","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"TencentCloud"},{"color":"#0057ff","colorGradient":"linear-gradient(to right, #6865FC, #467DF9)","desc":"https://tiangong.cn","docsUrl":"tiangong","fullTitle":"Tiangong (天工)","group":"application","id":"Tiangong","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Tiangong"},{"color":"#6400FF","desc":"https://tii.ae","docsUrl":"tii","fullTitle":"Technology Innovation Institute (Falcon)","group":"provider","id":"TII","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Technology Innovation Institute"},{"color":"#fff","desc":"https://together.ai","docsUrl":"together","fullTitle":"together.ai","group":"provider","id":"Together","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"together.ai"},{"color":"#000","desc":"https://topazlabs.com","docsUrl":"topaz-labs","fullTitle":"TopazLabs","group":"application","id":"TopazLabs","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"TopazLabs"},{"color":"#32F08C","desc":"https://trae.ai","docsUrl":"trae","fullTitle":"TRAE","group":"application","id":"Trae","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"TRAE"},{"color":"#000","desc":"https://tripo3d.ai","docsUrl":"tripo","fullTitle":"Tripo","group":"application","id":"Tripo","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Tripo"},{"color":"#F7AD8A","colorGradient":"linear-gradient(-45deg, #FAD076, #F7AD8A, #C768B9)","desc":"https://turix.ai","docsUrl":"turi-x","fullTitle":"TuriX","group":"application","id":"TuriX","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"TuriX"},{"color":"#e30a5d","desc":"https://udio.com","docsUrl":"udio","fullTitle":"Udio","group":"application","id":"Udio","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Udio"},{"color":"#0ADDF8","desc":"https://unstructured.io","docsUrl":"unstructured","fullTitle":"Unstructured","group":"application","id":"Unstructured","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Unstructured"},{"color":"#908AF9","colorGradient":"linear-gradient(to bottom, #AEBCFE, #805DFA)","desc":"https://upstage.ai","docsUrl":"upstage","fullTitle":"Upstage","group":"provider","id":"Upstage","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Upsate"},{"color":"#000","desc":"https://v0.dev","docsUrl":"v-0","fullTitle":"V0 (Vercel)","group":"application","id":"V0","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":false,"hasText":false,"hasTextCn":false,"hasTextColor":false},"title":"V0"},{"color":"#3659FF","desc":"https://vectorizer.ai","docsUrl":"vectorizer-ai","fullTitle":"Vectorizer.AI","group":"application","id":"VectorizerAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Vectorizer.AI"},{"color":"#E05A2D","desc":"https://venice.ai","docsUrl":"venice","fullTitle":"Venice","group":"application","id":"Venice","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Venice"},{"color":"#000","desc":"https://sdk.vercel.ai","docsUrl":"vercel","fullTitle":"Vercel","group":"provider","id":"Vercel","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Vercel"},{"color":"#4285F4","desc":"https://cloud.google.com/generative-ai-studio","docsUrl":"vertex-ai","fullTitle":"VertexAI (Google)","group":"provider","id":"VertexAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"VertexAI"},{"color":"#22D5FF","colorGradient":"linear-gradient(to right, #40EDD8, #22D5FF, #047FFE)","desc":"https://vidu.com","docsUrl":"vidu","fullTitle":"Vidu","group":"application","id":"Vidu","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Vidu"},{"color":"#000","desc":"https://viggle.ai","docsUrl":"viggle","fullTitle":"Viggle","group":"application","id":"Viggle","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Viggle"},{"color":"#fff","desc":"https://github.com/vllm-project","docsUrl":"vllm","fullTitle":"vLLM","group":"provider","id":"Vllm","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"vLLM"},{"color":"#fff","desc":"https://volcengine.com","docsUrl":"volcengine","fullTitle":"Volcengine (火山引擎)","group":"provider","id":"Volcengine","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Volcengine"},{"color":"#012E33","desc":"https://voyageai.com","docsUrl":"voyage","fullTitle":"Voyage","group":"model","id":"Voyage","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":false,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Voyage"},{"color":"#167ADF","colorGradient":"linear-gradient(to right, #0A51C3, #23A4FB)","desc":"https://yiyan.baidu.com","docsUrl":"wenxin","fullTitle":"Wenxin (文心)","group":"model","id":"Wenxin","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Wenxin"},{"color":"#fff","desc":"https://windsurf.com","docsUrl":"windsurf","fullTitle":"Windsurf","group":"application","id":"Windsurf","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Windsurf"},{"color":"#F38020","desc":"https://developers.cloudflare.com/workers-ai","docsUrl":"workers-ai","fullTitle":"WorkersAI (Cloudflare)","group":"provider","id":"WorkersAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"WorkersAI"},{"color":"#fff","desc":"https://x.ai","docsUrl":"xai","fullTitle":"xAI","group":"provider","id":"XAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Grok"},{"color":"#000","desc":"https://platform.xiaomimimo.com","docsUrl":"xiaomi-mi-mo","fullTitle":"Xiaomi MiMo","group":"model","id":"XiaomiMiMo","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":false,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"XiaomiMiMo"},{"color":"#781ff5","desc":"https://github.com/xorbitsai/inference","docsUrl":"xinference","fullTitle":"Xinference","group":"provider","id":"Xinference","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Xinference"},{"color":"#0F1C4D","desc":"https://xpay.sh","docsUrl":"xpay","fullTitle":"Xpay","group":"provider","id":"Xpay","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"xpay"},{"color":"#fff","desc":"https://github.com/Duxiaoman-DI/XuanYuan","docsUrl":"xuanyuan","fullTitle":"Xuanyuan (度小满轩辕)","group":"model","id":"Xuanyuan","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"轩辕"},{"color":"#FB3E1C","desc":"https://ai.yandex.com","docsUrl":"yandex","fullTitle":"Yandex","group":"provider","id":"Yandex","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":false,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Yandex"},{"color":"#003425","desc":"https://github.com/01-ai/Yi","docsUrl":"yi","fullTitle":"Yi (零一万物)","group":"model","id":"Yi","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Yi"},{"color":"#000","desc":"https://youmind.ai","docsUrl":"you-mind","fullTitle":"YouMind","group":"application","id":"YouMind","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"YouMind"},{"color":"#fff","desc":"https://yuanbao.tencent.com","docsUrl":"yuanbao","fullTitle":"Yuanbao (腾讯元宝)","group":"application","id":"Yuanbao","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Yuanbao"},{"color":"#000","desc":"https://z.ai","docsUrl":"zai","fullTitle":"Z.ai","group":"application","id":"ZAI","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Z.ai"},{"color":"#FF4F00","desc":"https://zapier.com","docsUrl":"zapier","fullTitle":"Zapier","group":"application","id":"Zapier","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Zapier"},{"color":"#6300FF","desc":"https://zeabur.com","docsUrl":"zeabur","fullTitle":"Zeabur","group":"application","id":"Zeabur","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Zeabur"},{"color":"#E65C2C","desc":"https://zencoder.ai","docsUrl":"zencoder","fullTitle":"Zencoder","group":"application","id":"Zencoder","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Zencoder"},{"color":"#000","desc":"https://zenmux.ai","docsUrl":"zen-mux","fullTitle":"ZenMux","group":"provider","id":"ZenMux","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":false,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"ZenMux"},{"color":"#003425","desc":"https://lingyiwanwu.com/","docsUrl":"zero-one","fullTitle":"01.AI (零一万物)","group":"provider","id":"ZeroOne","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"01.AI"},{"color":"#3859FF","desc":"https://zhipuai.cn","docsUrl":"zhipu","fullTitle":"Zhipu (智谱)","group":"provider","id":"Zhipu","param":{"hasAvatar":true,"hasBrand":false,"hasBrandColor":false,"hasColor":true,"hasCombine":true,"hasText":true,"hasTextCn":false,"hasTextColor":false},"title":"Zhipu"}]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/icons",
3
- "version": "5.6.0",
3
+ "version": "5.7.0",
4
4
  "description": "Popular AI / LLM Model Brand SVG Logo and Icon Collection",
5
5
  "keywords": [
6
6
  "lobehub",