@lobehub/icons 1.88.0 → 1.90.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.
- package/README.md +63 -61
- package/es/CrewAI/components/Avatar.d.ts +5 -0
- package/es/CrewAI/components/Avatar.js +30 -0
- package/es/CrewAI/components/Brand.d.ts +3 -0
- package/es/CrewAI/components/Brand.js +46 -0
- package/es/CrewAI/components/BrandColor.d.ts +3 -0
- package/es/CrewAI/components/BrandColor.js +49 -0
- package/es/CrewAI/components/Color.d.ts +3 -0
- package/es/CrewAI/components/Color.js +43 -0
- package/es/CrewAI/components/Combine.d.ts +7 -0
- package/es/CrewAI/components/Combine.js +32 -0
- package/es/CrewAI/components/Mono.d.ts +3 -0
- package/es/CrewAI/components/Mono.js +42 -0
- package/es/CrewAI/components/Text.d.ts +3 -0
- package/es/CrewAI/components/Text.js +40 -0
- package/es/CrewAI/index.d.ts +19 -0
- package/es/CrewAI/index.js +20 -0
- package/es/CrewAI/style.d.ts +4 -0
- package/es/CrewAI/style.js +4 -0
- package/es/Phidata/components/Avatar.d.ts +5 -0
- package/es/Phidata/components/Avatar.js +30 -0
- package/es/Phidata/components/Color.d.ts +3 -0
- package/es/Phidata/components/Color.js +42 -0
- package/es/Phidata/components/Combine.d.ts +7 -0
- package/es/Phidata/components/Combine.js +32 -0
- package/es/Phidata/components/Mono.d.ts +3 -0
- package/es/Phidata/components/Mono.js +42 -0
- package/es/Phidata/components/Text.d.ts +3 -0
- package/es/Phidata/components/Text.js +40 -0
- package/es/Phidata/index.d.ts +15 -0
- package/es/Phidata/index.js +16 -0
- package/es/Phidata/style.d.ts +4 -0
- package/es/Phidata/style.js +4 -0
- package/es/features/providerConfig.js +4 -0
- package/es/features/providerEnum.d.ts +1 -0
- package/es/features/providerEnum.js +1 -0
- package/es/icons.d.ts +2 -0
- package/es/icons.js +2 -0
- package/es/toc.js +36 -0
- package/package.json +1 -1
@@ -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 { forwardRef } from 'react';
|
13
|
+
import { TITLE } from "../style";
|
14
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
15
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
16
|
+
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
17
|
+
var _ref$size = _ref.size,
|
18
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
19
|
+
style = _ref.style,
|
20
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
21
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
22
|
+
fill: "currentColor",
|
23
|
+
fillRule: "evenodd",
|
24
|
+
height: size,
|
25
|
+
ref: ref,
|
26
|
+
style: _objectSpread({
|
27
|
+
flex: 'none',
|
28
|
+
lineHeight: 1
|
29
|
+
}, style),
|
30
|
+
viewBox: "0 0 24 24",
|
31
|
+
width: size,
|
32
|
+
xmlns: "http://www.w3.org/2000/svg"
|
33
|
+
}, rest), {}, {
|
34
|
+
children: [/*#__PURE__*/_jsx("title", {
|
35
|
+
children: TITLE
|
36
|
+
}), /*#__PURE__*/_jsx("path", {
|
37
|
+
clipRule: "evenodd",
|
38
|
+
d: "M2.692 3.752C2 4.769 2 6.193 2 9.04v5.92c0 2.847 0 4.27.692 5.288a4 4 0 001.06 1.06C4.769 22 6.193 22 9.04 22h5.92c2.847 0 4.27 0 5.288-.692a4 4 0 001.06-1.06C22 19.231 22 17.807 22 14.96V9.04c0-2.847 0-4.27-.692-5.288a4 4 0 00-1.06-1.06C19.231 2 17.807 2 14.96 2H9.04c-2.847 0-4.27 0-5.288.692a4 4 0 00-1.06 1.06zm16.57 11.478a.755.755 0 10-1.51.032c.029 1.305-.304 1.912-.725 2.21-.468.334-1.288.473-2.635.272a.755.755 0 00-.222 1.493c1.445.215 2.769.15 3.731-.534 1.01-.718 1.393-1.94 1.36-3.473z"
|
39
|
+
})]
|
40
|
+
}));
|
41
|
+
});
|
42
|
+
export default Icon;
|
@@ -0,0 +1,40 @@
|
|
1
|
+
'use client';
|
2
|
+
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
4
|
+
var _excluded = ["size", "style"];
|
5
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
6
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
7
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
8
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
9
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
10
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
11
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
12
|
+
import { forwardRef } from 'react';
|
13
|
+
import { TITLE } from "../style";
|
14
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
15
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
16
|
+
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
17
|
+
var _ref$size = _ref.size,
|
18
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
19
|
+
style = _ref.style,
|
20
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
21
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
22
|
+
fill: "currentColor",
|
23
|
+
fillRule: "evenodd",
|
24
|
+
height: size,
|
25
|
+
ref: ref,
|
26
|
+
style: _objectSpread({
|
27
|
+
flex: 'none',
|
28
|
+
lineHeight: 1
|
29
|
+
}, style),
|
30
|
+
viewBox: "0 0 87 24",
|
31
|
+
xmlns: "http://www.w3.org/2000/svg"
|
32
|
+
}, rest), {}, {
|
33
|
+
children: [/*#__PURE__*/_jsx("title", {
|
34
|
+
children: TITLE
|
35
|
+
}), /*#__PURE__*/_jsx("path", {
|
36
|
+
d: "M81.649 13.08a34.758 34.758 0 00-2.781.357c-.765.136-1.395.306-1.888.51-.493.204-.86.45-1.097.74-.221.272-.332.604-.332.995 0 .595.23 1.063.69 1.403.458.34 1.07.51 1.836.51 1.123 0 1.999-.28 2.628-.842.63-.578.944-1.454.944-2.628V13.08zm-4.236 6.786a6.667 6.667 0 01-2.066-.306 4.94 4.94 0 01-1.607-.816 3.97 3.97 0 01-1.047-1.276 3.994 3.994 0 01-.357-1.71c0-.85.247-1.556.74-2.117.493-.562 1.157-1.021 1.99-1.378.85-.357 1.829-.63 2.934-.817a63.002 63.002 0 013.572-.484v-.256c0-.578-.076-1.063-.23-1.454-.152-.408-.365-.723-.637-.944a2.216 2.216 0 00-.918-.51 3.71 3.71 0 00-1.072-.153c-.766 0-1.412.204-1.94.612-.51.408-.782 1.03-.816 1.863h-2.985a4.79 4.79 0 01.536-1.914 4.68 4.68 0 011.225-1.48 5.33 5.33 0 011.786-.97 7.065 7.065 0 012.296-.357c.816 0 1.582.102 2.296.307a4.801 4.801 0 011.863.995c.527.459.935 1.071 1.224 1.837.29.748.425 1.667.409 2.755 0 .17-.009.392-.026.664v.893c0 .323-.008.663-.025 1.02v.97c0 .867.034 1.726.102 2.577.068.833.17 1.54.306 2.117h-2.781c-.051-.289-.102-.552-.153-.79a16.618 16.618 0 01-.102-1.072 4.035 4.035 0 01-1.837 1.658c-.766.358-1.659.536-2.68.536zM65.682 2.185h3.036v3.623h2.755v2.194h-2.755v7.476c0 .697.11 1.165.331 1.403.222.221.655.332 1.302.332h1.097v2.322h-2.245c-.732 0-1.327-.052-1.786-.154-.46-.119-.817-.314-1.072-.587-.255-.272-.434-.637-.536-1.097-.085-.476-.127-1.063-.127-1.76V8.002H63.64V5.808h2.042V2.185zM59.983 13.08a34.734 34.734 0 00-2.781.357c-.766.136-1.395.306-1.889.51-.493.204-.859.45-1.097.74-.22.272-.331.604-.331.995 0 .595.23 1.063.689 1.403.459.34 1.071.51 1.837.51 1.122 0 1.998-.28 2.628-.842.629-.578.944-1.454.944-2.628V13.08zm-4.236 6.786a6.668 6.668 0 01-2.066-.306 4.94 4.94 0 01-1.608-.816 3.972 3.972 0 01-1.046-1.276 3.994 3.994 0 01-.357-1.71c0-.85.246-1.556.74-2.117.493-.562 1.156-1.021 1.99-1.378.85-.357 1.829-.63 2.934-.817a62.965 62.965 0 013.572-.484v-.256c0-.578-.076-1.063-.23-1.454-.153-.408-.365-.723-.637-.944a2.214 2.214 0 00-.919-.51 3.709 3.709 0 00-1.072-.153c-.765 0-1.411.204-1.939.612-.51.408-.782 1.03-.816 1.863h-2.985c.05-.698.23-1.336.536-1.914a4.68 4.68 0 011.224-1.48 5.334 5.334 0 011.786-.97 7.067 7.067 0 012.297-.357c.816 0 1.581.102 2.296.307a4.803 4.803 0 011.862.995c.528.459.936 1.071 1.225 1.837.29.748.425 1.667.408 2.755 0 .17-.008.392-.025.664v.893c0 .323-.009.663-.026 1.02v.97c0 .867.034 1.726.102 2.577.068.833.17 1.54.307 2.117h-2.781c-.052-.289-.103-.552-.154-.79a16.448 16.448 0 01-.102-1.072 4.037 4.037 0 01-1.837 1.658c-.765.358-1.658.536-2.679.536zM45.788 1.037h3.036v18.498h-3.036v-1.811a4.235 4.235 0 01-1.658 1.581c-.698.375-1.506.562-2.424.562-.817 0-1.59-.162-2.322-.485a5.75 5.75 0 01-1.888-1.454c-.544-.63-.978-1.387-1.301-2.271-.306-.885-.46-1.88-.46-2.985 0-1.089.154-2.075.46-2.96.323-.884.757-1.641 1.301-2.27a5.454 5.454 0 011.888-1.43 5.441 5.441 0 012.322-.51c.918 0 1.726.187 2.424.561.697.375 1.25.902 1.658 1.582V1.037zm.128 11.635c0-.783-.094-1.472-.28-2.067-.188-.595-.443-1.08-.766-1.454a2.788 2.788 0 00-1.123-.868 3.143 3.143 0 00-1.378-.306c-.51 0-.978.11-1.403.332a3.218 3.218 0 00-1.097.944 4.605 4.605 0 00-.715 1.48 6.867 6.867 0 00-.255 1.939c0 1.463.324 2.62.97 3.47.646.833 1.48 1.25 2.5 1.25.494 0 .953-.094 1.378-.28a3.013 3.013 0 001.123-.894c.323-.391.578-.876.765-1.454.187-.595.28-1.293.28-2.092zM34.028 5.808v13.727H30.99V5.808h3.037zM19.769 7.722a3.976 3.976 0 011.633-1.633c.714-.391 1.556-.587 2.525-.587.834 0 1.54.128 2.118.383A3.63 3.63 0 0127.5 6.982c.375.476.647 1.046.817 1.71.187.663.28 1.403.28 2.22v8.623H25.56v-7.884c0-.46-.025-.91-.076-1.352a3.165 3.165 0 00-.357-1.174 1.89 1.89 0 00-.791-.842c-.34-.204-.8-.306-1.378-.306-.578 0-1.071.11-1.48.332a2.58 2.58 0 00-.995.867c-.255.374-.442.825-.561 1.352a8.987 8.987 0 00-.153 1.71v7.297h-3.036V1.037h3.036v6.685zM4.909 12.671c0 .8.085 1.497.255 2.093.187.578.442 1.063.765 1.454s.698.689 1.123.893c.442.187.91.28 1.403.28 1.072 0 1.905-.416 2.5-1.25.596-.85.894-2.007.894-3.47 0-1.445-.298-2.585-.893-3.418-.596-.85-1.43-1.276-2.5-1.276-.494 0-.962.102-1.404.306-.425.187-.8.476-1.123.868-.323.374-.578.858-.765 1.454-.17.595-.255 1.284-.255 2.066zm.127-6.863v1.837c.409-.68.961-1.208 1.659-1.582.697-.374 1.505-.561 2.424-.561.833 0 1.607.17 2.322.51.73.323 1.36.8 1.887 1.43.528.628.936 1.385 1.225 2.27.306.884.46 1.87.46 2.96 0 1.105-.154 2.1-.46 2.985-.29.884-.697 1.641-1.225 2.27a5.42 5.42 0 01-1.887 1.455 5.569 5.569 0 01-2.322.485c-.919 0-1.727-.188-2.424-.562a4.234 4.234 0 01-1.659-1.582V24H2V5.808h3.036zM34.633 2.122a2.123 2.123 0 11-4.245 0 2.123 2.123 0 014.245 0z"
|
37
|
+
})]
|
38
|
+
}));
|
39
|
+
});
|
40
|
+
export default Icon;
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import Avatar from './components/Avatar';
|
2
|
+
import Color from './components/Color';
|
3
|
+
import Combine from './components/Combine';
|
4
|
+
import Mono from './components/Mono';
|
5
|
+
import Text from './components/Text';
|
6
|
+
export type CompoundedIcon = typeof Mono & {
|
7
|
+
Avatar: typeof Avatar;
|
8
|
+
Color: typeof Color;
|
9
|
+
Combine: typeof Combine;
|
10
|
+
Text: typeof Text;
|
11
|
+
colorPrimary: string;
|
12
|
+
title: string;
|
13
|
+
};
|
14
|
+
declare const Icons: CompoundedIcon;
|
15
|
+
export default Icons;
|
@@ -0,0 +1,16 @@
|
|
1
|
+
'use client';
|
2
|
+
|
3
|
+
import Avatar from "./components/Avatar";
|
4
|
+
import Color from "./components/Color";
|
5
|
+
import Combine from "./components/Combine";
|
6
|
+
import Mono from "./components/Mono";
|
7
|
+
import Text from "./components/Text";
|
8
|
+
import { COLOR_PRIMARY, TITLE } from "./style";
|
9
|
+
var Icons = Mono;
|
10
|
+
Icons.Color = Color;
|
11
|
+
Icons.Text = Text;
|
12
|
+
Icons.Combine = Combine;
|
13
|
+
Icons.Avatar = Avatar;
|
14
|
+
Icons.colorPrimary = COLOR_PRIMARY;
|
15
|
+
Icons.title = TITLE;
|
16
|
+
export default Icons;
|
@@ -37,6 +37,7 @@ import Groq from "../Groq";
|
|
37
37
|
import Higress from "../Higress";
|
38
38
|
import HuggingFace from "../HuggingFace";
|
39
39
|
import Hunyuan from "../Hunyuan";
|
40
|
+
import Infinigence from "../Infinigence";
|
40
41
|
import InternLM from "../InternLM";
|
41
42
|
import Jina from "../Jina";
|
42
43
|
import LmStudio from "../LmStudio";
|
@@ -369,4 +370,7 @@ export var providerMappings = [{
|
|
369
370
|
}, {
|
370
371
|
Icon: Search1API,
|
371
372
|
keywords: [ModelProvider.Search1API]
|
373
|
+
}, {
|
374
|
+
Icon: Infinigence,
|
375
|
+
keywords: [ModelProvider.InfiniAI]
|
372
376
|
}];
|
@@ -18,6 +18,7 @@ export var ModelProvider = /*#__PURE__*/function (ModelProvider) {
|
|
18
18
|
ModelProvider["Higress"] = "higress";
|
19
19
|
ModelProvider["HuggingFace"] = "huggingface";
|
20
20
|
ModelProvider["Hunyuan"] = "hunyuan";
|
21
|
+
ModelProvider["InfiniAI"] = "infiniai";
|
21
22
|
ModelProvider["InternLM"] = "internlm";
|
22
23
|
ModelProvider["Jina"] = "jina";
|
23
24
|
ModelProvider["LmStudio"] = "lmstudio";
|
package/es/icons.d.ts
CHANGED
@@ -35,6 +35,7 @@ export { default as ComfyUI, type CompoundedIcon as ComfyUIProps } from './Comfy
|
|
35
35
|
export { default as CommandA, type CompoundedIcon as CommandAProps } from './CommandA';
|
36
36
|
export { default as Copilot, type CompoundedIcon as CopilotProps } from './Copilot';
|
37
37
|
export { default as Coze, type CompoundedIcon as CozeProps } from './Coze';
|
38
|
+
export { default as CrewAI, type CompoundedIcon as CrewAIrops } from './CrewAI';
|
38
39
|
export { default as Cursor, type CompoundedIcon as CursorProps } from './Cursor';
|
39
40
|
export { default as Dalle, type CompoundedIcon as DalleProps } from './Dalle';
|
40
41
|
export { default as Dbrx, type CompoundedIcon as DbrxProps } from './Dbrx';
|
@@ -111,6 +112,7 @@ export { default as OpenRouter, type CompoundedIcon as OpenRouterProps } from '.
|
|
111
112
|
export { default as OpenWebUI, type CompoundedIcon as OpenWebUIProps } from './OpenWebUI';
|
112
113
|
export { default as PaLM, type CompoundedIcon as PaLMProps } from './PaLM';
|
113
114
|
export { default as Perplexity, type CompoundedIcon as PerplexityProps } from './Perplexity';
|
115
|
+
export { default as Phidata, type CompoundedIcon as PhidataProps } from './Phidata';
|
114
116
|
export { default as Pika, type CompoundedIcon as PikaProps } from './Pika';
|
115
117
|
export { default as PixVerse, type CompoundedIcon as PixVerseProps } from './PixVerse';
|
116
118
|
export { default as Poe, type CompoundedIcon as PoeProps } from './Poe';
|
package/es/icons.js
CHANGED
@@ -35,6 +35,7 @@ export { default as ComfyUI } from "./ComfyUI";
|
|
35
35
|
export { default as CommandA } from "./CommandA";
|
36
36
|
export { default as Copilot } from "./Copilot";
|
37
37
|
export { default as Coze } from "./Coze";
|
38
|
+
export { default as CrewAI } from "./CrewAI";
|
38
39
|
export { default as Cursor } from "./Cursor";
|
39
40
|
export { default as Dalle } from "./Dalle";
|
40
41
|
export { default as Dbrx } from "./Dbrx";
|
@@ -111,6 +112,7 @@ export { default as OpenRouter } from "./OpenRouter";
|
|
111
112
|
export { default as OpenWebUI } from "./OpenWebUI";
|
112
113
|
export { default as PaLM } from "./PaLM";
|
113
114
|
export { default as Perplexity } from "./Perplexity";
|
115
|
+
export { default as Phidata } from "./Phidata";
|
114
116
|
export { default as Pika } from "./Pika";
|
115
117
|
export { default as PixVerse } from "./PixVerse";
|
116
118
|
export { default as Poe } from "./Poe";
|
package/es/toc.js
CHANGED
@@ -672,6 +672,24 @@ var toc = [{
|
|
672
672
|
"hasTextColor": false
|
673
673
|
},
|
674
674
|
"title": "Coze"
|
675
|
+
}, {
|
676
|
+
"color": "#fff",
|
677
|
+
"desc": "https://crewai.com",
|
678
|
+
"docsUrl": "crew-ai",
|
679
|
+
"fullTitle": "CrewAI",
|
680
|
+
"group": "application",
|
681
|
+
"id": "CrewAI",
|
682
|
+
"param": {
|
683
|
+
"hasAvatar": true,
|
684
|
+
"hasBrand": true,
|
685
|
+
"hasBrandColor": true,
|
686
|
+
"hasColor": true,
|
687
|
+
"hasCombine": true,
|
688
|
+
"hasText": true,
|
689
|
+
"hasTextCn": false,
|
690
|
+
"hasTextColor": false
|
691
|
+
},
|
692
|
+
"title": "CrewAI"
|
675
693
|
}, {
|
676
694
|
"color": "#000",
|
677
695
|
"desc": "https://cursor.com",
|
@@ -2071,6 +2089,24 @@ var toc = [{
|
|
2071
2089
|
"hasTextColor": false
|
2072
2090
|
},
|
2073
2091
|
"title": "Perplexity"
|
2092
|
+
}, {
|
2093
|
+
"color": "#FF4017",
|
2094
|
+
"desc": "https://phidata.com",
|
2095
|
+
"docsUrl": "phidata",
|
2096
|
+
"fullTitle": "Phidata",
|
2097
|
+
"group": "application",
|
2098
|
+
"id": "Phidata",
|
2099
|
+
"param": {
|
2100
|
+
"hasAvatar": true,
|
2101
|
+
"hasBrand": false,
|
2102
|
+
"hasBrandColor": false,
|
2103
|
+
"hasColor": true,
|
2104
|
+
"hasCombine": true,
|
2105
|
+
"hasText": true,
|
2106
|
+
"hasTextCn": false,
|
2107
|
+
"hasTextColor": false
|
2108
|
+
},
|
2109
|
+
"title": "Phidata"
|
2074
2110
|
}, {
|
2075
2111
|
"color": "#FDF7EF",
|
2076
2112
|
"desc": "https://pika.art",
|