@arco-iconbox/react-hiagent 0.2.57 → 0.2.58
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/cjs/IconTextProcessing/index.d.ts +4 -0
- package/cjs/IconTextProcessing/index.js +60 -0
- package/cjs/index.d.ts +1 -0
- package/cjs/index.js +3 -1
- package/dist/icon.min.js +1 -1
- package/esm/IconTextProcessing/index.d.ts +4 -0
- package/esm/IconTextProcessing/index.js +35 -0
- package/esm/index.d.ts +1 -0
- package/esm/index.js +1 -0
- package/package.json +1 -1
- package/src/IconTextProcessing/index.tsx +15 -0
- package/src/index.ts +1 -0
- package/umd/IconTextProcessing/index.d.ts +4 -0
- package/umd/IconTextProcessing/index.js +70 -0
- package/umd/index.d.ts +1 -0
- package/umd/index.js +4 -2
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
13
|
+
var t = {};
|
|
14
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
15
|
+
t[p] = s[p];
|
|
16
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
17
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
18
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
19
|
+
t[p[i]] = s[p[i]];
|
|
20
|
+
}
|
|
21
|
+
return t;
|
|
22
|
+
};
|
|
23
|
+
import React, { useContext } from 'react';
|
|
24
|
+
import { Context } from '../context';
|
|
25
|
+
function IconTextProcessingComponent(props, ref) {
|
|
26
|
+
var prefixFromContext = useContext(Context).prefix;
|
|
27
|
+
var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? false : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
|
|
28
|
+
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
29
|
+
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
30
|
+
return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-text-processing").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 20 20" }, rest, { ref: ref }),
|
|
31
|
+
React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#40C6F0', d: "M15 0H5a5 5 0 0 0-5 5v10a5 5 0 0 0 5 5h10a5 5 0 0 0 5-5V5a5 5 0 0 0-5-5Z" }),
|
|
32
|
+
React.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', fillRule: "evenodd", d: "M4 6.225C4 4.996 4.996 4 6.225 4h7.55C15.004 4 16 4.996 16 6.225v7.55A2.225 2.225 0 0 1 13.775 16h-7.55A2.225 2.225 0 0 1 4 13.775v-7.55Zm2.472 1.753c0-.336.272-.607.607-.607h5.842a.607.607 0 1 1 0 1.213h-2.314v4.337a.607.607 0 1 1-1.214 0V8.584H7.08a.607.607 0 0 1-.607-.606Z", clipRule: "evenodd" }));
|
|
33
|
+
}
|
|
34
|
+
var IconTextProcessing = React.forwardRef(IconTextProcessingComponent);
|
|
35
|
+
export default IconTextProcessing;
|
package/esm/index.d.ts
CHANGED
|
@@ -801,4 +801,5 @@ export { default as IconUploadFile } from './IconUploadFile';
|
|
|
801
801
|
export { default as IconAgentproFollow } from './IconAgentproFollow';
|
|
802
802
|
export { default as IconTerminology } from './IconTerminology';
|
|
803
803
|
export { default as IconSankeyDiagram } from './IconSankeyDiagram';
|
|
804
|
+
export { default as IconTextProcessing } from './IconTextProcessing';
|
|
804
805
|
export * from './type';
|
package/esm/index.js
CHANGED
|
@@ -801,4 +801,5 @@ export { default as IconUploadFile } from './IconUploadFile';
|
|
|
801
801
|
export { default as IconAgentproFollow } from './IconAgentproFollow';
|
|
802
802
|
export { default as IconTerminology } from './IconTerminology';
|
|
803
803
|
export { default as IconSankeyDiagram } from './IconSankeyDiagram';
|
|
804
|
+
export { default as IconTextProcessing } from './IconTextProcessing';
|
|
804
805
|
export * from './type';
|
package/package.json
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { ForwardedRef, useContext } from 'react';
|
|
2
|
+
import { OriginIconProps } from '../type';
|
|
3
|
+
import { Context } from '../context';
|
|
4
|
+
|
|
5
|
+
function IconTextProcessingComponent(props: OriginIconProps, ref: ForwardedRef<SVGSVGElement>) {
|
|
6
|
+
const { prefix: prefixFromContext } = useContext(Context);
|
|
7
|
+
const { className = '', prefix: prefixFromProps, width = '1em', height = '1em', useCurrentColor = false, spin, ...rest } = props;
|
|
8
|
+
|
|
9
|
+
const prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
10
|
+
const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
|
|
11
|
+
return <svg className={`${prefix}-icon ${prefix}-icon-text-processing${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : 'none'} viewBox="0 0 20 20" {...rest} ref={ref}><path fill={useCurrentColor ? 'currentColor' : '#40C6F0'} d="M15 0H5a5 5 0 0 0-5 5v10a5 5 0 0 0 5 5h10a5 5 0 0 0 5-5V5a5 5 0 0 0-5-5Z"/><path fill={useCurrentColor ? 'currentColor' : '#fff'} fillRule="evenodd" d="M4 6.225C4 4.996 4.996 4 6.225 4h7.55C15.004 4 16 4.996 16 6.225v7.55A2.225 2.225 0 0 1 13.775 16h-7.55A2.225 2.225 0 0 1 4 13.775v-7.55Zm2.472 1.753c0-.336.272-.607.607-.607h5.842a.607.607 0 1 1 0 1.213h-2.314v4.337a.607.607 0 1 1-1.214 0V8.584H7.08a.607.607 0 0 1-.607-.606Z" clipRule="evenodd"/></svg>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const IconTextProcessing = React.forwardRef(IconTextProcessingComponent);
|
|
15
|
+
export default IconTextProcessing;
|
package/src/index.ts
CHANGED
|
@@ -801,5 +801,6 @@ export { default as IconUploadFile } from './IconUploadFile';
|
|
|
801
801
|
export { default as IconAgentproFollow } from './IconAgentproFollow';
|
|
802
802
|
export { default as IconTerminology } from './IconTerminology';
|
|
803
803
|
export { default as IconSankeyDiagram } from './IconSankeyDiagram';
|
|
804
|
+
export { default as IconTextProcessing } from './IconTextProcessing';
|
|
804
805
|
|
|
805
806
|
export * from './type';
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
15
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
16
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
17
|
+
}
|
|
18
|
+
Object.defineProperty(o, k2, desc);
|
|
19
|
+
}) : (function(o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
o[k2] = m[k];
|
|
22
|
+
}));
|
|
23
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
24
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
25
|
+
}) : function(o, v) {
|
|
26
|
+
o["default"] = v;
|
|
27
|
+
});
|
|
28
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
29
|
+
if (mod && mod.__esModule) return mod;
|
|
30
|
+
var result = {};
|
|
31
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
32
|
+
__setModuleDefault(result, mod);
|
|
33
|
+
return result;
|
|
34
|
+
};
|
|
35
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
36
|
+
var t = {};
|
|
37
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
38
|
+
t[p] = s[p];
|
|
39
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
40
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
41
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
42
|
+
t[p[i]] = s[p[i]];
|
|
43
|
+
}
|
|
44
|
+
return t;
|
|
45
|
+
};
|
|
46
|
+
(function (factory) {
|
|
47
|
+
if (typeof module === "object" && typeof module.exports === "object") {
|
|
48
|
+
var v = factory(require, exports);
|
|
49
|
+
if (v !== undefined) module.exports = v;
|
|
50
|
+
}
|
|
51
|
+
else if (typeof define === "function" && define.amd) {
|
|
52
|
+
define(["require", "exports", "react", "../context"], factory);
|
|
53
|
+
}
|
|
54
|
+
})(function (require, exports) {
|
|
55
|
+
"use strict";
|
|
56
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57
|
+
var react_1 = __importStar(require("react"));
|
|
58
|
+
var context_1 = require("../context");
|
|
59
|
+
function IconTextProcessingComponent(props, ref) {
|
|
60
|
+
var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
|
|
61
|
+
var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? false : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
|
|
62
|
+
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
63
|
+
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
64
|
+
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-text-processing").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : 'none', viewBox: "0 0 20 20" }, rest, { ref: ref }),
|
|
65
|
+
react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#40C6F0', d: "M15 0H5a5 5 0 0 0-5 5v10a5 5 0 0 0 5 5h10a5 5 0 0 0 5-5V5a5 5 0 0 0-5-5Z" }),
|
|
66
|
+
react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', fillRule: "evenodd", d: "M4 6.225C4 4.996 4.996 4 6.225 4h7.55C15.004 4 16 4.996 16 6.225v7.55A2.225 2.225 0 0 1 13.775 16h-7.55A2.225 2.225 0 0 1 4 13.775v-7.55Zm2.472 1.753c0-.336.272-.607.607-.607h5.842a.607.607 0 1 1 0 1.213h-2.314v4.337a.607.607 0 1 1-1.214 0V8.584H7.08a.607.607 0 0 1-.607-.606Z", clipRule: "evenodd" }));
|
|
67
|
+
}
|
|
68
|
+
var IconTextProcessing = react_1.default.forwardRef(IconTextProcessingComponent);
|
|
69
|
+
exports.default = IconTextProcessing;
|
|
70
|
+
});
|
package/umd/index.d.ts
CHANGED
|
@@ -801,4 +801,5 @@ export { default as IconUploadFile } from './IconUploadFile';
|
|
|
801
801
|
export { default as IconAgentproFollow } from './IconAgentproFollow';
|
|
802
802
|
export { default as IconTerminology } from './IconTerminology';
|
|
803
803
|
export { default as IconSankeyDiagram } from './IconSankeyDiagram';
|
|
804
|
+
export { default as IconTextProcessing } from './IconTextProcessing';
|
|
804
805
|
export * from './type';
|
package/umd/index.js
CHANGED
|
@@ -21,12 +21,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
21
21
|
if (v !== undefined) module.exports = v;
|
|
22
22
|
}
|
|
23
23
|
else if (typeof define === "function" && define.amd) {
|
|
24
|
-
define(["require", "exports", "./IconWorkflowNodata", "./IconAgentNodata", "./IconPlugInNodata", "./IconNodata", "./IconSearchWithoutData", "./IconKnowledgeNodata", "./IconWorkflowCondition", "./IconWorkflowCode", "./IconSelected", "./IconLLM", "./IconKnowledgeWorkflow", "./IconOverviewWeb", "./IconWorkflowEnd", "./IconAppVariable", "./IconOverviewAPI", "./IconAppWorkflow", "./IconExclamationCircleRedFill", "./IconAppTools", "./IconAppKnowledge", "./IconModelHighlight", "./IconAppSecurityDialogue", "./IconCheckCircleFill", "./IconRunningInProgress", "./IconWorkflowWorkflow", "./IconHomebotC", "./IconNewAgent", "./IconClockCircleGreyFill", "./IconFileCloudStorage", "./IconInfoColor", "./IconFeishu", "./IconAdvancedReview", "./IconUserinput", "./IconHiagent", "./IconDataXls", "./IconGoodjob", "./IconSettings", "./IconModelDefault", "./IconPlugin", "./IconDoc", "./IconAIPAccess", "./IconArrange", "./IconOverviewCreationTime", "./IconExcellentAreality", "./IconOverview", "./IconLocalUpload", "./IconKnowledgeBase", "./IconCopyAreality", "./IconBadAreality", "./IconBasicEdition", "./IconUser", "./IconEmptyFile", "./IconFlowChoreography", "./IconIntelligentVideoServiceP", "./IconEditAreality", "./IconStopRecordingFill", "./IconDebug", "./IconRemarks", "./IconQuote", "./IconPersonalSpace", "./IconPicturePlaceholder", "./IconPromptAssessment", "./IconPublishAreality", "./IconDialogueSuggestion", "./IconArchive", "./IconLicence", "./IconWorkspaceManagement", "./IconOtherTag", "./IconApplicationApproval", "./IconDelete", "./IconModelManagement", "./IconQA", "./IconVoice3", "./IconSend", "./IconRemove", "./IconOtherTool", "./IconHistory", "./IconWorkspaceSetting", "./IconConversation", "./IconChartFill", "./IconProjectFill", "./IconTakeover", "./IconRun", "./IconPromptFile", "./IconClipboardFill", "./IconOverlapRectConfig", "./IconOperationalAudit", "./IconOperate", "./IconTpc", "./IconSecuritySettings", "./IconLineChart", "./IconSkill", "./IconDisplaySetup", "./IconRoleManagement", "./IconLessee", "./IconRunningProcess", "./IconResourceAdministration", "./IconEarthGlobal", "./IconWorkflowDebug", "./IconAccountCenter", "./IconPlatformManagement", "./IconLLMopsLogo", "./IconKnowledgeGraph", "./IconTerminologyBank", "./IconCycleVertices", "./IconExclamationCircleFill", "./IconIIntentionRecognition", "./IconTimer", "./IconWfTerminologyBank", "./IconMessageNodes", "./IconEvent", "./IconDataNode", "./IconSso", "./IconBreak", "./IconWorkflowStart", "./IconToolsWorkflow", "./IconUnlock25D", "./IconControlled25D", "./IconDatabase", "./IconPublishedAgent", "./IconAgent", "./IconOptimalLayout", "./IconNextStep", "./IconOverviewPreview", "./IconWrapper", "./IconLocation", "./IconWorkflowFullscreen", "./IconEdit", "./IconInfo", "./IconOverviewKey", "./IconVariable", "./IconHand", "./IconParagraph", "./IconUnfold", "./IconDrag", "./IconSwitchover", "./IconCode", "./IconIde", "./IconSkip", "./IconHomeAt", "./IconPublish", "./IconKnowledge", "./IconCodeTesting", "./IconVoiceOpen", "./IconVoiceClose", "./IconConfig", "./IconExportBold", "./IconStop", "./IconText", "./IconEnumeration", "./IconOverviewRefresh", "./IconUploadingDown", "./IconEnable", "./IconOrientation", "./IconDeleteKv", "./IconLastStep", "./IconMode", "./IconFairyStick", "./IconRefresh", "./IconArrowRightCorner", "./IconClockCircle", "./IconClose", "./IconExport", "./IconEarth", "./IconClearHistory", "./IconAuth", "./IconSelect", "./IconSetting", "./IconUploadingError", "./IconMergeGraph", "./IconArrayPoint", "./IconWorkflowMinification", "./IconPlus", "./IconBlowUp", "./IconArrowRight", "./IconScatterPoint", "./IconLine", "./IconCirclePoint", "./IconNode400", "./IconRadiationPoint", "./IconDownload", "./IconNoOntology", "./IconLoginFailure", "./IconCodeUn", "./IconMenuConversation", "./IconMenuPlugin", "./IconMenuDatabase", "./IconMenuPrompt", "./IconMenuWorkflow", "./IconMenuAgent", "./IconVoiceai", "./IconShortcutInstructions", "./IconDataTableBlock", "./IconMergePd", "./IconConfiguration", "./IconPreview", "./IconAnnotation", "./IconDeleteLine", "./IconRecording", "./IconImportDefault", "./IconUndeliver", "./IconUploadActive", "./IconUploadDefaut", "./IconImportFile", "./IconImportFileList", "./IconEquals", "./IconNotContains", "./IconFlagAlt", "./IconContains", "./IconNotEquals", "./IconNotIContains", "./IconIContains", "./IconRegex", "./IconCustom", "./IconFrame", "./IconSelectAll", "./IconNotRegex", "./IconPython", "./IconColumnConfiguration", "./IconMultiple", "./IconDoc1", "./IconText1", "./IconImage", "./IconMix", "./IconMd", "./IconTechnology", "./IconModel1", "./IconCreateFile", "./IconAlbum", "./IconStar", "./IconRight", "./IconUp", "./IconLeft", "./IconDown", "./IconDeleteFill", "./IconUploadCloud", "./IconDrop", "./IconSearch", "./IconDragDotVertical", "./IconFilter", "./IconUpload", "./IconWarningFill", "./IconSuccessFill", "./IconRise", "./IconMinus", "./IconInfoCircle", "./IconErrorFill", "./IconAddUser", "./IconRedo", "./IconUndo", "./IconBrush", "./IconQuestionCircle", "./IconDescendingSorting", "./IconMenuFold", "./IconMenuUnfold", "./IconUnorderedList", "./IconQuestionMarkCircle", "./IconAttachment", "./IconMindMapping", "./IconDetails", "./IconDoneAlt", "./IconEllipse", "./IconUserGroup", "./IconEye", "./IconNotificationOff", "./IconInvisible", "./IconEyeInvisible", "./IconSwap", "./IconSwapAlt", "./IconLink", "./IconPlusCircle", "./IconSortAlt", "./IconExclamationCircle", "./IconMinusCircleFill", "./IconMonitorFill", "./IconPlayFill", "./IconAntiViolence", "./IconUpdate", "./IconPinFill", "./IconWifiSecurity", "./IconAnalysis", "./IconDistributionConfig", "./IconBlockchain", "./IconClean", "./IconDevProcess", "./IconLoadBalancing", "./IconSwipe", "./IconArrowRiseSquare", "./IconFlowControl", "./IconArrowFallSquare", "./IconCloudEngine", "./IconHierarchy", "./IconSubordinates", "./IconBlock", "./IconImageEditing", "./IconBlockStorage", "./IconResign", "./IconTextAlt", "./IconPlan", "./IconComprehensiveEvaluation", "./IconEncryptedDocument", "./IconReadingList", "./IconHurricane", "./IconLoudspeaker", "./IconFencing", "./IconKey", "./IconHorseToy", "./IconRecordStop", "./IconArrowFall", "./IconRiskWarning", "./IconPromise", "./IconProfitModelAlt", "./IconDrawer", "./IconDocument", "./IconArrowRise", "./IconPdfFile", "./IconPen", "./IconClipboardError", "./IconImportRecord", "./IconFolder", "./IconRetry", "./IconCheck", "./IconCaretLeft", "./IconGitMerge", "./IconCaretRight", "./IconMoreFilter", "./IconSync", "./IconHeart", "./IconCaretDownRed", "./IconIconNewWindow", "./IconDrawerExpand", "./IconEditFilled", "./IconDocumentFeedback", "./IconDrawerFold", "./IconSound", "./IconRollbackingInProgress", "./IconMinusCircleFillGrey", "./IconLoading", "./IconCancelingInProgress", "./IconInfoCircleFill", "./IconClockCircleFill", "./IconCloseCircleFill", "./IconCheckCircleBlue", "./IconCheckCircleFilled", "./IconCheckTriangleFill", "./IconNewWindow", "./IconSearchNullHighSaturation", "./IconNoContentSimplified", "./IconNetWorkErrorSimplified", "./IconNoPicLowSaturation", "./IconNoPermissionLowSaturation", "./IconNoContentLowSaturation", "./IconErrorTypeSimplified", "./IconNoChartHighSaturation", "./IconNoDataHighSaturation", "./Icon403ErrorHighSaturation", "./IconNoPermissionHighSaturation", "./IconNoChartLowSaturation", "./IconNoContentHighSaturation", "./IconNoDataSimplified", "./IconNoPicHighSaturation", "./Icon404ErrorLowSaturation", "./IconSearchNullSimplified", "./IconNetworkErrorHighSaturation", "./IconNoPermissionSimplified", "./IconNetworkErrorLowSaturation", "./Icon403ErrorLowSaturation", "./Icon404ErrorHighSaturation", "./IconCardInfo", "./IconOtherAlarm", "./IconGroup", "./IconKnowledgeMinus", "./IconKnowledgeAddto", "./IconKnowledgeRight", "./IconKnowledgeLeft", "./IconUserTemplate", "./IconJavascript", "./IconNoRule", "./IconTemplate1", "./IconAccuracy", "./IconF1", "./IconRouge2", "./IconRougeL", "./IconRouge1", "./IconAddGroup", "./IconCollect2", "./IconCopyLine", "./IconGeneralSuccessHighSaturation", "./IconSimplifiedChinese", "./IconTraditionalChinese", "./IconEn", "./IconRerank", "./IconPackaging", "./IconClosure", "./IconTokenQuantity", "./IconOfficialV", "./IconAgentDialogue", "./IconAgentUse", "./IconCardCollectionSurface", "./IconAgentQuote", "./IconCardCollectionLinearity", "./IconMessageFill", "./IconColumnConfiguration1", "./IconTrialOperation", "./IconShare", "./IconModelWarehouse", "./IconModelAppliction", "./IconDataDataset", "./IconSessionFlow", "./IconAgtDebug", "./IconWflSetVariable", "./IconAddVersion", "./IconCaretDown", "./IconArrangeMemory", "./IconImageUnderstanding", "./IconBleu", "./IconNist", "./IconMenteor", "./IconSortingModel", "./IconLanguageModel", "./IconVectorModel", "./IconModelFile", "./IconModelServiceC", "./IconManagementBackEnd", "./IconSystemPresetting", "./IconImageAi", "./IconFunctionCall", "./IconWfMemory", "./IconVariableAggregation", "./IconWflHttp", "./IconCommentApply", "./IconShield", "./IconProtection", "./IconThreatAttribution", "./IconWebEmb", "./IconScale", "./IconOutput", "./IconUnfold2", "./IconBatchProcessing", "./IconMemoryWebapp", "./IconAddMaas", "./IconContinuePretrain", "./IconRl", "./IconStopUpdate", "./IconSingleMachine", "./IconSmoothUpdate", "./IconRm", "./IconDataSetBlue", "./IconDataSetDetail", "./IconDataSetBos", "./IconObs", "./IconFolderOpen", "./IconFolderClose", "./IconParameterSetting", "./IconAsynchronousOperation", "./IconBatchMovement", "./IconPin", "./IconRename", "./IconUnpin", "./IconInformationCollection", "./IconKnowledgeWriting", "./IconCardLine", "./IconCardSurface", "./IconDataProcessing", "./IconDatasetsReflux", "./IconCheckboxList", "./IconDistribution", "./IconModelWarehouseDetail", "./IconStarColor", "./IconWkfTemplate", "./IconWkfOptimization", "./IconCustomApplication", "./IconArrowUpwards", "./IconArrowDownward", "./IconRunConfiguration", "./IconRuntimeConfiguration", "./IconPublishVersion", "./IconExportRecord", "./IconMoreVertical1", "./IconParallel", "./IconUserVariable", "./IconInvokeMemoryDel", "./IconAPI", "./IconAPIDatasource", "./IconVariableAssignment", "./IconAgentImport", "./IconAgentHistory", "./IconAgentChannel", "./IconAgentPublishOthers", "./IconAgentPublishWeChat", "./IconAgentPublishEnterpriseWechat", "./IconAgentPublishApi", "./IconAgentDeploymentPackage", "./IconAgentWebService", "./IconMinimumQueue", "./IconImage2video", "./IconText2image", "./IconText2video", "./IconVisualModel", "./IconNvidia", "./IconAscent", "./IconUpgradeEngine", "./IconAiVideo", "./IconAiImageDefault", "./IconAiVideoActive", "./IconAiVideoDefault", "./IconAiImageActive", "./IconImageUpload", "./IconConstraint", "./IconUnconstraint", "./IconMagic", "./IconCalendar1", "./IconDiagramCracking", "./IconUploadImage1", "./IconUploadVideo1", "./IconDataClean", "./IconDataAnnotation", "./IconDataEnhance", "./IconPositioningChart", "./IconImageUnderstanding1", "./IconAgentSend", "./IconMCPAgentPublish", "./IconWebsdk", "./IconTreeKnowledgePermission", "./IconTreeEmbeddingModel", "./IconTreePluginInvocation", "./IconTreeSQL", "./IconTreeSafetyAudit", "./IconTreeRankModel", "./IconTreeContentAudit", "./IconTreeDatabasePermission", "./IconTreeMetadataFiltering", "./IconTreeAgentInvocation", "./IconTreeKnowledgeRetrieval", "./IconAgentFile", "./IconCircularGraph", "./IconBarChart", "./IconExtendedContext", "./IconWorkflowNode", "./IconPermission", "./IconAnonymousAccess", "./IconWhiteList", "./IconAgentVoiceInterruptionTurnoff", "./IconAgentSubtitlesOn", "./IconAgentVoiceInterruptionTurnon", "./IconAgentSubtitlesOff", "./IconAgentVoiceExit", "./IconAgentInputKeyboard", "./IconAgentVoiceHangup", "./IconAgentVoiceAnswer", "./IconAgentVoiceSwitch", "./IconAgentMicrophone", "./IconAgentVoiceInteraction", "./IconAgentMicrophoneClose", "./IconTreeQA", "./IconTreeAgent", "./IconStop1", "./IconAgentCenterAnswer", "./IconTreeFailure", "./IconTreeSuccess", "./IconTreeAbnormal", "./IconPluginListedAdd", "./IconPluginChoose", "./IconPluginListed", "./IconWorkflowDownward", "./IconWorkflowUpwards", "./IconWorkflowNodeInput", "./IconUploadingHtml", "./IconUploadingCsv", "./IconUploadingJson", "./IconUploadingOfd", "./IconUploadingXlsx", "./IconUploadingMd", "./IconUploadingDoc", "./IconUploadingPpt", "./IconUploadingPdf", "./IconUploadingPng", "./IconUnknownFile", "./IconUploadingTxt", "./IconZip", "./IconDataExternal", "./IconUploadingWps", "./IconUploadingLarksheet", "./IconUploadingLarkdocx", "./IconPromptGeneral", "./IconPromptJinja", "./IconPromptInterviewQuestions", "./IconPromptContentExpansion", "./IconPromptMeeting", "./IconPromptReasoningThinking", "./IconPromptWrittenOptimization", "./IconPromptSkillInvocation", "./IconPromptKnowledgeAnswer", "./IconPromptTaskExecution", "./IconPromptHallucinationCorrection", "./IconPromptRolePlaying", "./IconPromptGeneralStructure", "./IconPromptDefault", "./IconPromptCreateCopy", "./IconFirstFrame", "./IconImage2image", "./IconHead2tailFrame", "./IconWorkflowConditions", "./IconKnowledgeFluctuation", "./IconTreeTrigger", "./IconWorkflowFreedom500", "./IconWorkflow11500", "./IconWorkflow169500", "./IconWorkflow916500", "./IconWorkflow43500", "./IconWorkflow23500", "./IconWorkflow34500", "./IconWorkflow219500", "./IconWorkflow32500", "./IconWorkflow916", "./IconWorkflow23", "./IconWorkflow43", "./IconWorkflow11", "./IconWorkflow34", "./IconWorkflow219", "./IconWorkflow32", "./IconWorkflowFreedom", "./IconWorkflow169", "./IconTime", "./IconTable", "./IconBasicList", "./IconWorkflowImageGeneration", "./IconImageEmbedding", "./IconAgentFilesSettings", "./IconAgentFileSettings", "./IconVideo", "./IconAudio", "./IconAgentFileConfiguration", "./IconSystemLimitations", "./IconSystemAnnouncement", "./IconSystemTimeout", "./IconSystemVoice", "./IconSystemNetworkControl", "./IconSystemCodePackage", "./IconTreeModelImageGeneration", "./IconAgentFeedbackIgnore", "./IconMemoryEmbedding", "./IconRocket", "./IconInstallationPackage", "./IconOpen", "./IconTreeModelVideoGeneration", "./IconTreeModelVideoGenerationComp", "./IconTreeModelVideoGenerationCanc", "./IconLock1", "./IconJapanese", "./IconAgentThinkingLanguage", "./IconPluginCloudDeployment", "./IconPluginRemote", "./IconPluginLocal", "./IconDataTransform", "./IconSimilarityQuestion", "./IconRegionFolding", "./IconKnowledgePic", "./IconWorkflowVidMatching", "./IconRemoveColor", "./IconAudioPause", "./IconAudioCycle", "./IconAudioPlay", "./IconVideoFastForward10s", "./IconVideoRewind10s", "./IconUploadingLarkbitable", "./IconTokenConsumption", "./IconNodeTimeConsumption", "./IconSingleDialogueTimeConsuming", "./IconNodeInvocation", "./IconFirstCharacterReplyTakesTime", "./IconNodeSuccessfullyInvoked", "./IconFirstTokensCost", "./IconText2speech", "./IconMultiLanguage", "./IconMultiTimbre", "./IconSpeech2text", "./IconModelVoice", "./IconProcessEvaluation", "./IconVerticalBarChartNodata", "./IconHorizontalBarChartNodata", "./IconLineGraphNodata", "./IconPieChartNodata", "./IconPiplcon", "./IconPiplconExit", "./IconShrink", "./IconFull", "./IconLoudVolume", "./IconSilence", "./IconLowVolume", "./IconPause", "./IconPrevious", "./IconVideoPlay", "./IconVideoNext", "./IconReturnNow15", "./IconFastForward30", "./IconImportMusic", "./IconTabelNodata", "./IconMenuKnowledge", "./IconMenuPluginCenter", "./IconModelService", "./IconMenuTask", "./IconMenuEvaluation", "./IconMenuAgentCenter", "./IconMenuObservation", "./IconComputingManagement", "./IconModelOptimization", "./IconObservationIntegration", "./IconModelExperienceCenter", "./IconDataProcessing1", "./IconReleaseManagement", "./IconClaude", "./IconAWS", "./IconDeepseek", "./IconGoogleGemini", "./IconDoubao", "./IconGPT4", "./IconGPT35", "./IconQwen", "./IconBGE", "./IconMoonshot", "./IconVideoTag", "./IconFullscreen", "./IconVolume", "./IconText2video1", "./IconSaveButton", "./IconSavedConditions", "./IconLinkArrowSmall", "./IconTouchpadModeWorkflow", "./IconTouchpadMouseWorkflow", "./IconExperienceCenter", "./IconSpeaker", "./IconVideoAgentKnowledge", "./IconArtifactsPic", "./IconArtifactsFile", "./IconArtifactsSearch", "./IconArtifactsShell", "./IconArtifactsOther", "./IconAgentproConfiguration", "./IconArtifactsKnowledge", "./IconAgentproFileList", "./IconArtifactsCode", "./IconAgentproReportDownload", "./IconArtifactsBrowse", "./IconTaskDone", "./IconAgentproStop", "./IconAgentpro", "./IconTraceRaw", "./IconTraceText", "./IconResultEvaluation", "./IconDebugging", "./IconAgentChatStop", "./IconTransform1", "./IconDataProduction", "./IconMessage", "./IconMenu", "./IconLaunch", "./IconCopy", "./IconCloseCircle", "./IconCalendarClock", "./IconArrowDown", "./IconThumbUp", "./IconMinusCircle", "./IconZoomIn", "./IconZoomOut", "./IconThumbDown", "./IconModelGallery", "./IconMenuHiagent", "./IconDataOnlineTagging", "./IconMenuEvaluationSet", "./IconMenuIndicators", "./IconDataInsight", "./IconWorkflowChecklist", "./IconRotateLeft", "./IconTag", "./IconEmpty", "./IconFullscreenExit", "./IconTaskCompleted", "./IconDiagramCracking2", "./IconTreeRules", "./IconTreeObject", "./IconGeneratedDocument", "./IconPromptWordTemplate", "./IconAutomaticOptimization", "./IconDecline2", "./IconComparison", "./IconRise2", "./IconPDSeparation", "./IconCompletedComparison", "./IconWorkflowKnowledgeRetrieval", "./IconTreeQASearch", "./IconTreeTerminologySearch", "./IconKnowledgeChartTable", "./IconKnowledgeDataSynchronization", "./IconMore", "./IconQAExtract", "./IconLoading2", "./IconIndicatorMonitoring", "./IconKnowledgeBoard", "./IconUploadRadio", "./IconUploadFile", "./IconAgentproFollow", "./IconTerminology", "./IconSankeyDiagram", "./type"], factory);
|
|
24
|
+
define(["require", "exports", "./IconWorkflowNodata", "./IconAgentNodata", "./IconPlugInNodata", "./IconNodata", "./IconSearchWithoutData", "./IconKnowledgeNodata", "./IconWorkflowCondition", "./IconWorkflowCode", "./IconSelected", "./IconLLM", "./IconKnowledgeWorkflow", "./IconOverviewWeb", "./IconWorkflowEnd", "./IconAppVariable", "./IconOverviewAPI", "./IconAppWorkflow", "./IconExclamationCircleRedFill", "./IconAppTools", "./IconAppKnowledge", "./IconModelHighlight", "./IconAppSecurityDialogue", "./IconCheckCircleFill", "./IconRunningInProgress", "./IconWorkflowWorkflow", "./IconHomebotC", "./IconNewAgent", "./IconClockCircleGreyFill", "./IconFileCloudStorage", "./IconInfoColor", "./IconFeishu", "./IconAdvancedReview", "./IconUserinput", "./IconHiagent", "./IconDataXls", "./IconGoodjob", "./IconSettings", "./IconModelDefault", "./IconPlugin", "./IconDoc", "./IconAIPAccess", "./IconArrange", "./IconOverviewCreationTime", "./IconExcellentAreality", "./IconOverview", "./IconLocalUpload", "./IconKnowledgeBase", "./IconCopyAreality", "./IconBadAreality", "./IconBasicEdition", "./IconUser", "./IconEmptyFile", "./IconFlowChoreography", "./IconIntelligentVideoServiceP", "./IconEditAreality", "./IconStopRecordingFill", "./IconDebug", "./IconRemarks", "./IconQuote", "./IconPersonalSpace", "./IconPicturePlaceholder", "./IconPromptAssessment", "./IconPublishAreality", "./IconDialogueSuggestion", "./IconArchive", "./IconLicence", "./IconWorkspaceManagement", "./IconOtherTag", "./IconApplicationApproval", "./IconDelete", "./IconModelManagement", "./IconQA", "./IconVoice3", "./IconSend", "./IconRemove", "./IconOtherTool", "./IconHistory", "./IconWorkspaceSetting", "./IconConversation", "./IconChartFill", "./IconProjectFill", "./IconTakeover", "./IconRun", "./IconPromptFile", "./IconClipboardFill", "./IconOverlapRectConfig", "./IconOperationalAudit", "./IconOperate", "./IconTpc", "./IconSecuritySettings", "./IconLineChart", "./IconSkill", "./IconDisplaySetup", "./IconRoleManagement", "./IconLessee", "./IconRunningProcess", "./IconResourceAdministration", "./IconEarthGlobal", "./IconWorkflowDebug", "./IconAccountCenter", "./IconPlatformManagement", "./IconLLMopsLogo", "./IconKnowledgeGraph", "./IconTerminologyBank", "./IconCycleVertices", "./IconExclamationCircleFill", "./IconIIntentionRecognition", "./IconTimer", "./IconWfTerminologyBank", "./IconMessageNodes", "./IconEvent", "./IconDataNode", "./IconSso", "./IconBreak", "./IconWorkflowStart", "./IconToolsWorkflow", "./IconUnlock25D", "./IconControlled25D", "./IconDatabase", "./IconPublishedAgent", "./IconAgent", "./IconOptimalLayout", "./IconNextStep", "./IconOverviewPreview", "./IconWrapper", "./IconLocation", "./IconWorkflowFullscreen", "./IconEdit", "./IconInfo", "./IconOverviewKey", "./IconVariable", "./IconHand", "./IconParagraph", "./IconUnfold", "./IconDrag", "./IconSwitchover", "./IconCode", "./IconIde", "./IconSkip", "./IconHomeAt", "./IconPublish", "./IconKnowledge", "./IconCodeTesting", "./IconVoiceOpen", "./IconVoiceClose", "./IconConfig", "./IconExportBold", "./IconStop", "./IconText", "./IconEnumeration", "./IconOverviewRefresh", "./IconUploadingDown", "./IconEnable", "./IconOrientation", "./IconDeleteKv", "./IconLastStep", "./IconMode", "./IconFairyStick", "./IconRefresh", "./IconArrowRightCorner", "./IconClockCircle", "./IconClose", "./IconExport", "./IconEarth", "./IconClearHistory", "./IconAuth", "./IconSelect", "./IconSetting", "./IconUploadingError", "./IconMergeGraph", "./IconArrayPoint", "./IconWorkflowMinification", "./IconPlus", "./IconBlowUp", "./IconArrowRight", "./IconScatterPoint", "./IconLine", "./IconCirclePoint", "./IconNode400", "./IconRadiationPoint", "./IconDownload", "./IconNoOntology", "./IconLoginFailure", "./IconCodeUn", "./IconMenuConversation", "./IconMenuPlugin", "./IconMenuDatabase", "./IconMenuPrompt", "./IconMenuWorkflow", "./IconMenuAgent", "./IconVoiceai", "./IconShortcutInstructions", "./IconDataTableBlock", "./IconMergePd", "./IconConfiguration", "./IconPreview", "./IconAnnotation", "./IconDeleteLine", "./IconRecording", "./IconImportDefault", "./IconUndeliver", "./IconUploadActive", "./IconUploadDefaut", "./IconImportFile", "./IconImportFileList", "./IconEquals", "./IconNotContains", "./IconFlagAlt", "./IconContains", "./IconNotEquals", "./IconNotIContains", "./IconIContains", "./IconRegex", "./IconCustom", "./IconFrame", "./IconSelectAll", "./IconNotRegex", "./IconPython", "./IconColumnConfiguration", "./IconMultiple", "./IconDoc1", "./IconText1", "./IconImage", "./IconMix", "./IconMd", "./IconTechnology", "./IconModel1", "./IconCreateFile", "./IconAlbum", "./IconStar", "./IconRight", "./IconUp", "./IconLeft", "./IconDown", "./IconDeleteFill", "./IconUploadCloud", "./IconDrop", "./IconSearch", "./IconDragDotVertical", "./IconFilter", "./IconUpload", "./IconWarningFill", "./IconSuccessFill", "./IconRise", "./IconMinus", "./IconInfoCircle", "./IconErrorFill", "./IconAddUser", "./IconRedo", "./IconUndo", "./IconBrush", "./IconQuestionCircle", "./IconDescendingSorting", "./IconMenuFold", "./IconMenuUnfold", "./IconUnorderedList", "./IconQuestionMarkCircle", "./IconAttachment", "./IconMindMapping", "./IconDetails", "./IconDoneAlt", "./IconEllipse", "./IconUserGroup", "./IconEye", "./IconNotificationOff", "./IconInvisible", "./IconEyeInvisible", "./IconSwap", "./IconSwapAlt", "./IconLink", "./IconPlusCircle", "./IconSortAlt", "./IconExclamationCircle", "./IconMinusCircleFill", "./IconMonitorFill", "./IconPlayFill", "./IconAntiViolence", "./IconUpdate", "./IconPinFill", "./IconWifiSecurity", "./IconAnalysis", "./IconDistributionConfig", "./IconBlockchain", "./IconClean", "./IconDevProcess", "./IconLoadBalancing", "./IconSwipe", "./IconArrowRiseSquare", "./IconFlowControl", "./IconArrowFallSquare", "./IconCloudEngine", "./IconHierarchy", "./IconSubordinates", "./IconBlock", "./IconImageEditing", "./IconBlockStorage", "./IconResign", "./IconTextAlt", "./IconPlan", "./IconComprehensiveEvaluation", "./IconEncryptedDocument", "./IconReadingList", "./IconHurricane", "./IconLoudspeaker", "./IconFencing", "./IconKey", "./IconHorseToy", "./IconRecordStop", "./IconArrowFall", "./IconRiskWarning", "./IconPromise", "./IconProfitModelAlt", "./IconDrawer", "./IconDocument", "./IconArrowRise", "./IconPdfFile", "./IconPen", "./IconClipboardError", "./IconImportRecord", "./IconFolder", "./IconRetry", "./IconCheck", "./IconCaretLeft", "./IconGitMerge", "./IconCaretRight", "./IconMoreFilter", "./IconSync", "./IconHeart", "./IconCaretDownRed", "./IconIconNewWindow", "./IconDrawerExpand", "./IconEditFilled", "./IconDocumentFeedback", "./IconDrawerFold", "./IconSound", "./IconRollbackingInProgress", "./IconMinusCircleFillGrey", "./IconLoading", "./IconCancelingInProgress", "./IconInfoCircleFill", "./IconClockCircleFill", "./IconCloseCircleFill", "./IconCheckCircleBlue", "./IconCheckCircleFilled", "./IconCheckTriangleFill", "./IconNewWindow", "./IconSearchNullHighSaturation", "./IconNoContentSimplified", "./IconNetWorkErrorSimplified", "./IconNoPicLowSaturation", "./IconNoPermissionLowSaturation", "./IconNoContentLowSaturation", "./IconErrorTypeSimplified", "./IconNoChartHighSaturation", "./IconNoDataHighSaturation", "./Icon403ErrorHighSaturation", "./IconNoPermissionHighSaturation", "./IconNoChartLowSaturation", "./IconNoContentHighSaturation", "./IconNoDataSimplified", "./IconNoPicHighSaturation", "./Icon404ErrorLowSaturation", "./IconSearchNullSimplified", "./IconNetworkErrorHighSaturation", "./IconNoPermissionSimplified", "./IconNetworkErrorLowSaturation", "./Icon403ErrorLowSaturation", "./Icon404ErrorHighSaturation", "./IconCardInfo", "./IconOtherAlarm", "./IconGroup", "./IconKnowledgeMinus", "./IconKnowledgeAddto", "./IconKnowledgeRight", "./IconKnowledgeLeft", "./IconUserTemplate", "./IconJavascript", "./IconNoRule", "./IconTemplate1", "./IconAccuracy", "./IconF1", "./IconRouge2", "./IconRougeL", "./IconRouge1", "./IconAddGroup", "./IconCollect2", "./IconCopyLine", "./IconGeneralSuccessHighSaturation", "./IconSimplifiedChinese", "./IconTraditionalChinese", "./IconEn", "./IconRerank", "./IconPackaging", "./IconClosure", "./IconTokenQuantity", "./IconOfficialV", "./IconAgentDialogue", "./IconAgentUse", "./IconCardCollectionSurface", "./IconAgentQuote", "./IconCardCollectionLinearity", "./IconMessageFill", "./IconColumnConfiguration1", "./IconTrialOperation", "./IconShare", "./IconModelWarehouse", "./IconModelAppliction", "./IconDataDataset", "./IconSessionFlow", "./IconAgtDebug", "./IconWflSetVariable", "./IconAddVersion", "./IconCaretDown", "./IconArrangeMemory", "./IconImageUnderstanding", "./IconBleu", "./IconNist", "./IconMenteor", "./IconSortingModel", "./IconLanguageModel", "./IconVectorModel", "./IconModelFile", "./IconModelServiceC", "./IconManagementBackEnd", "./IconSystemPresetting", "./IconImageAi", "./IconFunctionCall", "./IconWfMemory", "./IconVariableAggregation", "./IconWflHttp", "./IconCommentApply", "./IconShield", "./IconProtection", "./IconThreatAttribution", "./IconWebEmb", "./IconScale", "./IconOutput", "./IconUnfold2", "./IconBatchProcessing", "./IconMemoryWebapp", "./IconAddMaas", "./IconContinuePretrain", "./IconRl", "./IconStopUpdate", "./IconSingleMachine", "./IconSmoothUpdate", "./IconRm", "./IconDataSetBlue", "./IconDataSetDetail", "./IconDataSetBos", "./IconObs", "./IconFolderOpen", "./IconFolderClose", "./IconParameterSetting", "./IconAsynchronousOperation", "./IconBatchMovement", "./IconPin", "./IconRename", "./IconUnpin", "./IconInformationCollection", "./IconKnowledgeWriting", "./IconCardLine", "./IconCardSurface", "./IconDataProcessing", "./IconDatasetsReflux", "./IconCheckboxList", "./IconDistribution", "./IconModelWarehouseDetail", "./IconStarColor", "./IconWkfTemplate", "./IconWkfOptimization", "./IconCustomApplication", "./IconArrowUpwards", "./IconArrowDownward", "./IconRunConfiguration", "./IconRuntimeConfiguration", "./IconPublishVersion", "./IconExportRecord", "./IconMoreVertical1", "./IconParallel", "./IconUserVariable", "./IconInvokeMemoryDel", "./IconAPI", "./IconAPIDatasource", "./IconVariableAssignment", "./IconAgentImport", "./IconAgentHistory", "./IconAgentChannel", "./IconAgentPublishOthers", "./IconAgentPublishWeChat", "./IconAgentPublishEnterpriseWechat", "./IconAgentPublishApi", "./IconAgentDeploymentPackage", "./IconAgentWebService", "./IconMinimumQueue", "./IconImage2video", "./IconText2image", "./IconText2video", "./IconVisualModel", "./IconNvidia", "./IconAscent", "./IconUpgradeEngine", "./IconAiVideo", "./IconAiImageDefault", "./IconAiVideoActive", "./IconAiVideoDefault", "./IconAiImageActive", "./IconImageUpload", "./IconConstraint", "./IconUnconstraint", "./IconMagic", "./IconCalendar1", "./IconDiagramCracking", "./IconUploadImage1", "./IconUploadVideo1", "./IconDataClean", "./IconDataAnnotation", "./IconDataEnhance", "./IconPositioningChart", "./IconImageUnderstanding1", "./IconAgentSend", "./IconMCPAgentPublish", "./IconWebsdk", "./IconTreeKnowledgePermission", "./IconTreeEmbeddingModel", "./IconTreePluginInvocation", "./IconTreeSQL", "./IconTreeSafetyAudit", "./IconTreeRankModel", "./IconTreeContentAudit", "./IconTreeDatabasePermission", "./IconTreeMetadataFiltering", "./IconTreeAgentInvocation", "./IconTreeKnowledgeRetrieval", "./IconAgentFile", "./IconCircularGraph", "./IconBarChart", "./IconExtendedContext", "./IconWorkflowNode", "./IconPermission", "./IconAnonymousAccess", "./IconWhiteList", "./IconAgentVoiceInterruptionTurnoff", "./IconAgentSubtitlesOn", "./IconAgentVoiceInterruptionTurnon", "./IconAgentSubtitlesOff", "./IconAgentVoiceExit", "./IconAgentInputKeyboard", "./IconAgentVoiceHangup", "./IconAgentVoiceAnswer", "./IconAgentVoiceSwitch", "./IconAgentMicrophone", "./IconAgentVoiceInteraction", "./IconAgentMicrophoneClose", "./IconTreeQA", "./IconTreeAgent", "./IconStop1", "./IconAgentCenterAnswer", "./IconTreeFailure", "./IconTreeSuccess", "./IconTreeAbnormal", "./IconPluginListedAdd", "./IconPluginChoose", "./IconPluginListed", "./IconWorkflowDownward", "./IconWorkflowUpwards", "./IconWorkflowNodeInput", "./IconUploadingHtml", "./IconUploadingCsv", "./IconUploadingJson", "./IconUploadingOfd", "./IconUploadingXlsx", "./IconUploadingMd", "./IconUploadingDoc", "./IconUploadingPpt", "./IconUploadingPdf", "./IconUploadingPng", "./IconUnknownFile", "./IconUploadingTxt", "./IconZip", "./IconDataExternal", "./IconUploadingWps", "./IconUploadingLarksheet", "./IconUploadingLarkdocx", "./IconPromptGeneral", "./IconPromptJinja", "./IconPromptInterviewQuestions", "./IconPromptContentExpansion", "./IconPromptMeeting", "./IconPromptReasoningThinking", "./IconPromptWrittenOptimization", "./IconPromptSkillInvocation", "./IconPromptKnowledgeAnswer", "./IconPromptTaskExecution", "./IconPromptHallucinationCorrection", "./IconPromptRolePlaying", "./IconPromptGeneralStructure", "./IconPromptDefault", "./IconPromptCreateCopy", "./IconFirstFrame", "./IconImage2image", "./IconHead2tailFrame", "./IconWorkflowConditions", "./IconKnowledgeFluctuation", "./IconTreeTrigger", "./IconWorkflowFreedom500", "./IconWorkflow11500", "./IconWorkflow169500", "./IconWorkflow916500", "./IconWorkflow43500", "./IconWorkflow23500", "./IconWorkflow34500", "./IconWorkflow219500", "./IconWorkflow32500", "./IconWorkflow916", "./IconWorkflow23", "./IconWorkflow43", "./IconWorkflow11", "./IconWorkflow34", "./IconWorkflow219", "./IconWorkflow32", "./IconWorkflowFreedom", "./IconWorkflow169", "./IconTime", "./IconTable", "./IconBasicList", "./IconWorkflowImageGeneration", "./IconImageEmbedding", "./IconAgentFilesSettings", "./IconAgentFileSettings", "./IconVideo", "./IconAudio", "./IconAgentFileConfiguration", "./IconSystemLimitations", "./IconSystemAnnouncement", "./IconSystemTimeout", "./IconSystemVoice", "./IconSystemNetworkControl", "./IconSystemCodePackage", "./IconTreeModelImageGeneration", "./IconAgentFeedbackIgnore", "./IconMemoryEmbedding", "./IconRocket", "./IconInstallationPackage", "./IconOpen", "./IconTreeModelVideoGeneration", "./IconTreeModelVideoGenerationComp", "./IconTreeModelVideoGenerationCanc", "./IconLock1", "./IconJapanese", "./IconAgentThinkingLanguage", "./IconPluginCloudDeployment", "./IconPluginRemote", "./IconPluginLocal", "./IconDataTransform", "./IconSimilarityQuestion", "./IconRegionFolding", "./IconKnowledgePic", "./IconWorkflowVidMatching", "./IconRemoveColor", "./IconAudioPause", "./IconAudioCycle", "./IconAudioPlay", "./IconVideoFastForward10s", "./IconVideoRewind10s", "./IconUploadingLarkbitable", "./IconTokenConsumption", "./IconNodeTimeConsumption", "./IconSingleDialogueTimeConsuming", "./IconNodeInvocation", "./IconFirstCharacterReplyTakesTime", "./IconNodeSuccessfullyInvoked", "./IconFirstTokensCost", "./IconText2speech", "./IconMultiLanguage", "./IconMultiTimbre", "./IconSpeech2text", "./IconModelVoice", "./IconProcessEvaluation", "./IconVerticalBarChartNodata", "./IconHorizontalBarChartNodata", "./IconLineGraphNodata", "./IconPieChartNodata", "./IconPiplcon", "./IconPiplconExit", "./IconShrink", "./IconFull", "./IconLoudVolume", "./IconSilence", "./IconLowVolume", "./IconPause", "./IconPrevious", "./IconVideoPlay", "./IconVideoNext", "./IconReturnNow15", "./IconFastForward30", "./IconImportMusic", "./IconTabelNodata", "./IconMenuKnowledge", "./IconMenuPluginCenter", "./IconModelService", "./IconMenuTask", "./IconMenuEvaluation", "./IconMenuAgentCenter", "./IconMenuObservation", "./IconComputingManagement", "./IconModelOptimization", "./IconObservationIntegration", "./IconModelExperienceCenter", "./IconDataProcessing1", "./IconReleaseManagement", "./IconClaude", "./IconAWS", "./IconDeepseek", "./IconGoogleGemini", "./IconDoubao", "./IconGPT4", "./IconGPT35", "./IconQwen", "./IconBGE", "./IconMoonshot", "./IconVideoTag", "./IconFullscreen", "./IconVolume", "./IconText2video1", "./IconSaveButton", "./IconSavedConditions", "./IconLinkArrowSmall", "./IconTouchpadModeWorkflow", "./IconTouchpadMouseWorkflow", "./IconExperienceCenter", "./IconSpeaker", "./IconVideoAgentKnowledge", "./IconArtifactsPic", "./IconArtifactsFile", "./IconArtifactsSearch", "./IconArtifactsShell", "./IconArtifactsOther", "./IconAgentproConfiguration", "./IconArtifactsKnowledge", "./IconAgentproFileList", "./IconArtifactsCode", "./IconAgentproReportDownload", "./IconArtifactsBrowse", "./IconTaskDone", "./IconAgentproStop", "./IconAgentpro", "./IconTraceRaw", "./IconTraceText", "./IconResultEvaluation", "./IconDebugging", "./IconAgentChatStop", "./IconTransform1", "./IconDataProduction", "./IconMessage", "./IconMenu", "./IconLaunch", "./IconCopy", "./IconCloseCircle", "./IconCalendarClock", "./IconArrowDown", "./IconThumbUp", "./IconMinusCircle", "./IconZoomIn", "./IconZoomOut", "./IconThumbDown", "./IconModelGallery", "./IconMenuHiagent", "./IconDataOnlineTagging", "./IconMenuEvaluationSet", "./IconMenuIndicators", "./IconDataInsight", "./IconWorkflowChecklist", "./IconRotateLeft", "./IconTag", "./IconEmpty", "./IconFullscreenExit", "./IconTaskCompleted", "./IconDiagramCracking2", "./IconTreeRules", "./IconTreeObject", "./IconGeneratedDocument", "./IconPromptWordTemplate", "./IconAutomaticOptimization", "./IconDecline2", "./IconComparison", "./IconRise2", "./IconPDSeparation", "./IconCompletedComparison", "./IconWorkflowKnowledgeRetrieval", "./IconTreeQASearch", "./IconTreeTerminologySearch", "./IconKnowledgeChartTable", "./IconKnowledgeDataSynchronization", "./IconMore", "./IconQAExtract", "./IconLoading2", "./IconIndicatorMonitoring", "./IconKnowledgeBoard", "./IconUploadRadio", "./IconUploadFile", "./IconAgentproFollow", "./IconTerminology", "./IconSankeyDiagram", "./IconTextProcessing", "./type"], factory);
|
|
25
25
|
}
|
|
26
26
|
})(function (require, exports) {
|
|
27
27
|
"use strict";
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
-
exports.IconSankeyDiagram = exports.IconTerminology = exports.IconAgentproFollow = exports.IconUploadFile = exports.IconUploadRadio = exports.IconKnowledgeBoard = exports.IconIndicatorMonitoring = exports.IconLoading2 = exports.IconQAExtract = exports.IconMore = exports.IconKnowledgeDataSynchronization = exports.IconKnowledgeChartTable = exports.IconTreeTerminologySearch = exports.IconTreeQASearch = exports.IconWorkflowKnowledgeRetrieval = exports.IconCompletedComparison = exports.IconPDSeparation = exports.IconRise2 = exports.IconComparison = exports.IconDecline2 = exports.IconAutomaticOptimization = exports.IconPromptWordTemplate = exports.IconGeneratedDocument = exports.IconTreeObject = exports.IconTreeRules = exports.IconDiagramCracking2 = exports.IconTaskCompleted = exports.IconFullscreenExit = exports.IconEmpty = exports.IconTag = exports.IconRotateLeft = exports.IconWorkflowChecklist = exports.IconDataInsight = exports.IconMenuIndicators = exports.IconMenuEvaluationSet = exports.IconDataOnlineTagging = exports.IconMenuHiagent = exports.IconModelGallery = exports.IconThumbDown = exports.IconZoomOut = exports.IconZoomIn = exports.IconMinusCircle = exports.IconThumbUp = exports.IconArrowDown = exports.IconCalendarClock = exports.IconCloseCircle = exports.IconCopy = exports.IconLaunch = exports.IconMenu = exports.IconMessage = exports.IconDataProduction = exports.IconTransform1 = exports.IconAgentChatStop = exports.IconDebugging = exports.IconResultEvaluation = exports.IconTraceText = exports.IconTraceRaw = exports.IconAgentpro = exports.IconAgentproStop = exports.IconTaskDone = exports.IconArtifactsBrowse = exports.IconAgentproReportDownload = exports.IconArtifactsCode = exports.IconAgentproFileList = exports.IconArtifactsKnowledge = exports.IconAgentproConfiguration = exports.IconArtifactsOther = exports.IconArtifactsShell = exports.IconArtifactsSearch = exports.IconArtifactsFile = exports.IconArtifactsPic = exports.IconVideoAgentKnowledge = exports.IconSpeaker = exports.IconExperienceCenter = exports.IconTouchpadMouseWorkflow = exports.IconTouchpadModeWorkflow = exports.IconLinkArrowSmall = exports.IconSavedConditions = exports.IconSaveButton = exports.IconText2video1 = exports.IconVolume = exports.IconFullscreen = exports.IconVideoTag = exports.IconMoonshot = exports.IconBGE = exports.IconQwen = exports.IconGPT35 = exports.IconGPT4 = exports.IconDoubao = exports.IconGoogleGemini = exports.IconDeepseek = exports.IconAWS = exports.IconClaude = exports.IconReleaseManagement = exports.IconDataProcessing1 = exports.IconModelExperienceCenter = exports.IconObservationIntegration = exports.IconModelOptimization = exports.IconComputingManagement = exports.IconMenuObservation = exports.IconMenuAgentCenter = exports.IconMenuEvaluation = exports.IconMenuTask = exports.IconModelService = exports.IconMenuPluginCenter = exports.IconMenuKnowledge = exports.IconTabelNodata = exports.IconImportMusic = exports.IconFastForward30 = exports.IconReturnNow15 = exports.IconVideoNext = exports.IconVideoPlay = exports.IconPrevious = exports.IconPause = exports.IconLowVolume = exports.IconSilence = exports.IconLoudVolume = exports.IconFull = exports.IconShrink = exports.IconPiplconExit = exports.IconPiplcon = exports.IconPieChartNodata = exports.IconLineGraphNodata = exports.IconHorizontalBarChartNodata = exports.IconVerticalBarChartNodata = exports.IconProcessEvaluation = exports.IconModelVoice = exports.IconSpeech2text = exports.IconMultiTimbre = exports.IconMultiLanguage = exports.IconText2speech = exports.IconFirstTokensCost = exports.IconNodeSuccessfullyInvoked = exports.IconFirstCharacterReplyTakesTime = exports.IconNodeInvocation = exports.IconSingleDialogueTimeConsuming = exports.IconNodeTimeConsumption = exports.IconTokenConsumption = exports.IconUploadingLarkbitable = exports.IconVideoRewind10s = exports.IconVideoFastForward10s = exports.IconAudioPlay = exports.IconAudioCycle = exports.IconAudioPause = exports.IconRemoveColor = exports.IconWorkflowVidMatching = exports.IconKnowledgePic = exports.IconRegionFolding = exports.IconSimilarityQuestion = exports.IconDataTransform = exports.IconPluginLocal = exports.IconPluginRemote = exports.IconPluginCloudDeployment = exports.IconAgentThinkingLanguage = exports.IconJapanese = exports.IconLock1 = exports.IconTreeModelVideoGenerationCanc = exports.IconTreeModelVideoGenerationComp = exports.IconTreeModelVideoGeneration = exports.IconOpen = exports.IconInstallationPackage = exports.IconRocket = exports.IconMemoryEmbedding = exports.IconAgentFeedbackIgnore = exports.IconTreeModelImageGeneration = exports.IconSystemCodePackage = exports.IconSystemNetworkControl = exports.IconSystemVoice = exports.IconSystemTimeout = exports.IconSystemAnnouncement = exports.IconSystemLimitations = exports.IconAgentFileConfiguration = exports.IconAudio = exports.IconVideo = exports.IconAgentFileSettings = exports.IconAgentFilesSettings = exports.IconImageEmbedding = exports.IconWorkflowImageGeneration = exports.IconBasicList = exports.IconTable = exports.IconTime = exports.IconWorkflow169 = exports.IconWorkflowFreedom = exports.IconWorkflow32 = exports.IconWorkflow219 = exports.IconWorkflow34 = exports.IconWorkflow11 = exports.IconWorkflow43 = exports.IconWorkflow23 = exports.IconWorkflow916 = exports.IconWorkflow32500 = exports.IconWorkflow219500 = exports.IconWorkflow34500 = exports.IconWorkflow23500 = exports.IconWorkflow43500 = exports.IconWorkflow916500 = exports.IconWorkflow169500 = exports.IconWorkflow11500 = exports.IconWorkflowFreedom500 = exports.IconTreeTrigger = exports.IconKnowledgeFluctuation = exports.IconWorkflowConditions = exports.IconHead2tailFrame = exports.IconImage2image = exports.IconFirstFrame = exports.IconPromptCreateCopy = exports.IconPromptDefault = exports.IconPromptGeneralStructure = exports.IconPromptRolePlaying = exports.IconPromptHallucinationCorrection = exports.IconPromptTaskExecution = exports.IconPromptKnowledgeAnswer = exports.IconPromptSkillInvocation = exports.IconPromptWrittenOptimization = exports.IconPromptReasoningThinking = exports.IconPromptMeeting = exports.IconPromptContentExpansion = exports.IconPromptInterviewQuestions = exports.IconPromptJinja = exports.IconPromptGeneral = exports.IconUploadingLarkdocx = exports.IconUploadingLarksheet = exports.IconUploadingWps = exports.IconDataExternal = exports.IconZip = exports.IconUploadingTxt = exports.IconUnknownFile = exports.IconUploadingPng = exports.IconUploadingPdf = exports.IconUploadingPpt = exports.IconUploadingDoc = exports.IconUploadingMd = exports.IconUploadingXlsx = exports.IconUploadingOfd = exports.IconUploadingJson = exports.IconUploadingCsv = exports.IconUploadingHtml = exports.IconWorkflowNodeInput = exports.IconWorkflowUpwards = exports.IconWorkflowDownward = exports.IconPluginListed = exports.IconPluginChoose = exports.IconPluginListedAdd = exports.IconTreeAbnormal = exports.IconTreeSuccess = exports.IconTreeFailure = exports.IconAgentCenterAnswer = exports.IconStop1 = exports.IconTreeAgent = exports.IconTreeQA = exports.IconAgentMicrophoneClose = exports.IconAgentVoiceInteraction = exports.IconAgentMicrophone = exports.IconAgentVoiceSwitch = exports.IconAgentVoiceAnswer = exports.IconAgentVoiceHangup = exports.IconAgentInputKeyboard = exports.IconAgentVoiceExit = exports.IconAgentSubtitlesOff = exports.IconAgentVoiceInterruptionTurnon = exports.IconAgentSubtitlesOn = exports.IconAgentVoiceInterruptionTurnoff = exports.IconWhiteList = exports.IconAnonymousAccess = exports.IconPermission = exports.IconWorkflowNode = exports.IconExtendedContext = exports.IconBarChart = exports.IconCircularGraph = exports.IconAgentFile = exports.IconTreeKnowledgeRetrieval = exports.IconTreeAgentInvocation = exports.IconTreeMetadataFiltering = exports.IconTreeDatabasePermission = exports.IconTreeContentAudit = exports.IconTreeRankModel = exports.IconTreeSafetyAudit = exports.IconTreeSQL = exports.IconTreePluginInvocation = exports.IconTreeEmbeddingModel = exports.IconTreeKnowledgePermission = exports.IconWebsdk = exports.IconMCPAgentPublish = exports.IconAgentSend = exports.IconImageUnderstanding1 = exports.IconPositioningChart = exports.IconDataEnhance = exports.IconDataAnnotation = exports.IconDataClean = exports.IconUploadVideo1 = exports.IconUploadImage1 = exports.IconDiagramCracking = exports.IconCalendar1 = exports.IconMagic = exports.IconUnconstraint = exports.IconConstraint = exports.IconImageUpload = exports.IconAiImageActive = exports.IconAiVideoDefault = exports.IconAiVideoActive = exports.IconAiImageDefault = exports.IconAiVideo = exports.IconUpgradeEngine = exports.IconAscent = exports.IconNvidia = exports.IconVisualModel = exports.IconText2video = exports.IconText2image = exports.IconImage2video = exports.IconMinimumQueue = exports.IconAgentWebService = exports.IconAgentDeploymentPackage = exports.IconAgentPublishApi = exports.IconAgentPublishEnterpriseWechat = exports.IconAgentPublishWeChat = exports.IconAgentPublishOthers = exports.IconAgentChannel = exports.IconAgentHistory = exports.IconAgentImport = exports.IconVariableAssignment = exports.IconAPIDatasource = exports.IconAPI = exports.IconInvokeMemoryDel = exports.IconUserVariable = exports.IconParallel = exports.IconMoreVertical1 = exports.IconExportRecord = exports.IconPublishVersion = exports.IconRuntimeConfiguration = exports.IconRunConfiguration = exports.IconArrowDownward = exports.IconArrowUpwards = exports.IconCustomApplication = exports.IconWkfOptimization = exports.IconWkfTemplate = exports.IconStarColor = exports.IconModelWarehouseDetail = exports.IconDistribution = exports.IconCheckboxList = exports.IconDatasetsReflux = exports.IconDataProcessing = exports.IconCardSurface = exports.IconCardLine = exports.IconKnowledgeWriting = exports.IconInformationCollection = exports.IconUnpin = exports.IconRename = exports.IconPin = exports.IconBatchMovement = exports.IconAsynchronousOperation = exports.IconParameterSetting = exports.IconFolderClose = exports.IconFolderOpen = exports.IconObs = exports.IconDataSetBos = exports.IconDataSetDetail = exports.IconDataSetBlue = exports.IconRm = exports.IconSmoothUpdate = exports.IconSingleMachine = exports.IconStopUpdate = exports.IconRl = exports.IconContinuePretrain = exports.IconAddMaas = exports.IconMemoryWebapp = exports.IconBatchProcessing = exports.IconUnfold2 = exports.IconOutput = exports.IconScale = exports.IconWebEmb = exports.IconThreatAttribution = exports.IconProtection = exports.IconShield = exports.IconCommentApply = exports.IconWflHttp = exports.IconVariableAggregation = exports.IconWfMemory = exports.IconFunctionCall = exports.IconImageAi = exports.IconSystemPresetting = exports.IconManagementBackEnd = exports.IconModelServiceC = exports.IconModelFile = exports.IconVectorModel = exports.IconLanguageModel = exports.IconSortingModel = exports.IconMenteor = exports.IconNist = exports.IconBleu = exports.IconImageUnderstanding = exports.IconArrangeMemory = exports.IconCaretDown = exports.IconAddVersion = exports.IconWflSetVariable = exports.IconAgtDebug = exports.IconSessionFlow = exports.IconDataDataset = exports.IconModelAppliction = exports.IconModelWarehouse = exports.IconShare = exports.IconTrialOperation = exports.IconColumnConfiguration1 = exports.IconMessageFill = exports.IconCardCollectionLinearity = exports.IconAgentQuote = exports.IconCardCollectionSurface = exports.IconAgentUse = exports.IconAgentDialogue = exports.IconOfficialV = exports.IconTokenQuantity = exports.IconClosure = exports.IconPackaging = exports.IconRerank = exports.IconEn = exports.IconTraditionalChinese = exports.IconSimplifiedChinese = exports.IconGeneralSuccessHighSaturation = exports.IconCopyLine = exports.IconCollect2 = exports.IconAddGroup = exports.IconRouge1 = exports.IconRougeL = exports.IconRouge2 = exports.IconF1 = exports.IconAccuracy = exports.IconTemplate1 = exports.IconNoRule = exports.IconJavascript = exports.IconUserTemplate = exports.IconKnowledgeLeft = exports.IconKnowledgeRight = exports.IconKnowledgeAddto = exports.IconKnowledgeMinus = exports.IconGroup = exports.IconOtherAlarm = exports.IconCardInfo = exports.Icon404ErrorHighSaturation = exports.Icon403ErrorLowSaturation = exports.IconNetworkErrorLowSaturation = exports.IconNoPermissionSimplified = exports.IconNetworkErrorHighSaturation = exports.IconSearchNullSimplified = exports.Icon404ErrorLowSaturation = exports.IconNoPicHighSaturation = exports.IconNoDataSimplified = exports.IconNoContentHighSaturation = exports.IconNoChartLowSaturation = exports.IconNoPermissionHighSaturation = exports.Icon403ErrorHighSaturation = exports.IconNoDataHighSaturation = exports.IconNoChartHighSaturation = exports.IconErrorTypeSimplified = exports.IconNoContentLowSaturation = exports.IconNoPermissionLowSaturation = exports.IconNoPicLowSaturation = exports.IconNetWorkErrorSimplified = exports.IconNoContentSimplified = exports.IconSearchNullHighSaturation = exports.IconNewWindow = exports.IconCheckTriangleFill = exports.IconCheckCircleFilled = exports.IconCheckCircleBlue = exports.IconCloseCircleFill = exports.IconClockCircleFill = exports.IconInfoCircleFill = exports.IconCancelingInProgress = exports.IconLoading = exports.IconMinusCircleFillGrey = exports.IconRollbackingInProgress = exports.IconSound = exports.IconDrawerFold = exports.IconDocumentFeedback = exports.IconEditFilled = exports.IconDrawerExpand = exports.IconIconNewWindow = exports.IconCaretDownRed = exports.IconHeart = exports.IconSync = exports.IconMoreFilter = exports.IconCaretRight = exports.IconGitMerge = exports.IconCaretLeft = exports.IconCheck = exports.IconRetry = exports.IconFolder = exports.IconImportRecord = exports.IconClipboardError = exports.IconPen = exports.IconPdfFile = exports.IconArrowRise = exports.IconDocument = exports.IconDrawer = exports.IconProfitModelAlt = exports.IconPromise = exports.IconRiskWarning = exports.IconArrowFall = exports.IconRecordStop = exports.IconHorseToy = exports.IconKey = exports.IconFencing = exports.IconLoudspeaker = exports.IconHurricane = exports.IconReadingList = exports.IconEncryptedDocument = exports.IconComprehensiveEvaluation = exports.IconPlan = exports.IconTextAlt = exports.IconResign = exports.IconBlockStorage = exports.IconImageEditing = exports.IconBlock = exports.IconSubordinates = exports.IconHierarchy = exports.IconCloudEngine = exports.IconArrowFallSquare = exports.IconFlowControl = exports.IconArrowRiseSquare = exports.IconSwipe = exports.IconLoadBalancing = exports.IconDevProcess = exports.IconClean = exports.IconBlockchain = exports.IconDistributionConfig = exports.IconAnalysis = exports.IconWifiSecurity = exports.IconPinFill = exports.IconUpdate = exports.IconAntiViolence = exports.IconPlayFill = exports.IconMonitorFill = exports.IconMinusCircleFill = exports.IconExclamationCircle = exports.IconSortAlt = exports.IconPlusCircle = exports.IconLink = exports.IconSwapAlt = exports.IconSwap = exports.IconEyeInvisible = exports.IconInvisible = exports.IconNotificationOff = exports.IconEye = exports.IconUserGroup = exports.IconEllipse = exports.IconDoneAlt = exports.IconDetails = exports.IconMindMapping = exports.IconAttachment = exports.IconQuestionMarkCircle = exports.IconUnorderedList = exports.IconMenuUnfold = exports.IconMenuFold = exports.IconDescendingSorting = exports.IconQuestionCircle = exports.IconBrush = exports.IconUndo = exports.IconRedo = exports.IconAddUser = exports.IconErrorFill = exports.IconInfoCircle = exports.IconMinus = exports.IconRise = exports.IconSuccessFill = exports.IconWarningFill = exports.IconUpload = exports.IconFilter = exports.IconDragDotVertical = exports.IconSearch = exports.IconDrop = exports.IconUploadCloud = exports.IconDeleteFill = exports.IconDown = exports.IconLeft = exports.IconUp = exports.IconRight = exports.IconStar = exports.IconAlbum = exports.IconCreateFile = exports.IconModel1 = exports.IconTechnology = exports.IconMd = exports.IconMix = exports.IconImage = exports.IconText1 = exports.IconDoc1 = exports.IconMultiple = exports.IconColumnConfiguration = exports.IconPython = exports.IconNotRegex = exports.IconSelectAll = exports.IconFrame = exports.IconCustom = exports.IconRegex = exports.IconIContains = exports.IconNotIContains = exports.IconNotEquals = exports.IconContains = exports.IconFlagAlt = exports.IconNotContains = exports.IconEquals = exports.IconImportFileList = exports.IconImportFile = exports.IconUploadDefaut = exports.IconUploadActive = exports.IconUndeliver = exports.IconImportDefault = exports.IconRecording = exports.IconDeleteLine = exports.IconAnnotation = exports.IconPreview = exports.IconConfiguration = exports.IconMergePd = exports.IconDataTableBlock = exports.IconShortcutInstructions = exports.IconVoiceai = exports.IconMenuAgent = exports.IconMenuWorkflow = exports.IconMenuPrompt = exports.IconMenuDatabase = exports.IconMenuPlugin = exports.IconMenuConversation = exports.IconCodeUn = exports.IconLoginFailure = exports.IconNoOntology = exports.IconDownload = exports.IconRadiationPoint = exports.IconNode400 = exports.IconCirclePoint = exports.IconLine = exports.IconScatterPoint = exports.IconArrowRight = exports.IconBlowUp = exports.IconPlus = exports.IconWorkflowMinification = exports.IconArrayPoint = exports.IconMergeGraph = exports.IconUploadingError = exports.IconSetting = exports.IconSelect = exports.IconAuth = exports.IconClearHistory = exports.IconEarth = exports.IconExport = exports.IconClose = exports.IconClockCircle = exports.IconArrowRightCorner = exports.IconRefresh = exports.IconFairyStick = exports.IconMode = exports.IconLastStep = exports.IconDeleteKv = exports.IconOrientation = exports.IconEnable = exports.IconUploadingDown = exports.IconOverviewRefresh = exports.IconEnumeration = exports.IconText = exports.IconStop = exports.IconExportBold = exports.IconConfig = exports.IconVoiceClose = exports.IconVoiceOpen = exports.IconCodeTesting = exports.IconKnowledge = exports.IconPublish = exports.IconHomeAt = exports.IconSkip = exports.IconIde = exports.IconCode = exports.IconSwitchover = exports.IconDrag = exports.IconUnfold = exports.IconParagraph = exports.IconHand = exports.IconVariable = exports.IconOverviewKey = exports.IconInfo = exports.IconEdit = exports.IconWorkflowFullscreen = exports.IconLocation = exports.IconWrapper = exports.IconOverviewPreview = exports.IconNextStep = exports.IconOptimalLayout = exports.IconAgent = exports.IconPublishedAgent = exports.IconDatabase = exports.IconControlled25D = exports.IconUnlock25D = exports.IconToolsWorkflow = exports.IconWorkflowStart = exports.IconBreak = exports.IconSso = exports.IconDataNode = exports.IconEvent = exports.IconMessageNodes = exports.IconWfTerminologyBank = exports.IconTimer = exports.IconIIntentionRecognition = exports.IconExclamationCircleFill = exports.IconCycleVertices = exports.IconTerminologyBank = exports.IconKnowledgeGraph = exports.IconLLMopsLogo = exports.IconPlatformManagement = exports.IconAccountCenter = exports.IconWorkflowDebug = exports.IconEarthGlobal = exports.IconResourceAdministration = exports.IconRunningProcess = exports.IconLessee = exports.IconRoleManagement = exports.IconDisplaySetup = exports.IconSkill = exports.IconLineChart = exports.IconSecuritySettings = exports.IconTpc = exports.IconOperate = exports.IconOperationalAudit = exports.IconOverlapRectConfig = exports.IconClipboardFill = exports.IconPromptFile = exports.IconRun = exports.IconTakeover = exports.IconProjectFill = exports.IconChartFill = exports.IconConversation = exports.IconWorkspaceSetting = exports.IconHistory = exports.IconOtherTool = exports.IconRemove = exports.IconSend = exports.IconVoice3 = exports.IconQA = exports.IconModelManagement = exports.IconDelete = exports.IconApplicationApproval = exports.IconOtherTag = exports.IconWorkspaceManagement = exports.IconLicence = exports.IconArchive = exports.IconDialogueSuggestion = exports.IconPublishAreality = exports.IconPromptAssessment = exports.IconPicturePlaceholder = exports.IconPersonalSpace = exports.IconQuote = exports.IconRemarks = exports.IconDebug = exports.IconStopRecordingFill = exports.IconEditAreality = exports.IconIntelligentVideoServiceP = exports.IconFlowChoreography = exports.IconEmptyFile = exports.IconUser = exports.IconBasicEdition = exports.IconBadAreality = exports.IconCopyAreality = exports.IconKnowledgeBase = exports.IconLocalUpload = exports.IconOverview = exports.IconExcellentAreality = exports.IconOverviewCreationTime = exports.IconArrange = exports.IconAIPAccess = exports.IconDoc = exports.IconPlugin = exports.IconModelDefault = exports.IconSettings = exports.IconGoodjob = exports.IconDataXls = exports.IconHiagent = exports.IconUserinput = exports.IconAdvancedReview = exports.IconFeishu = exports.IconInfoColor = exports.IconFileCloudStorage = exports.IconClockCircleGreyFill = exports.IconNewAgent = exports.IconHomebotC = exports.IconWorkflowWorkflow = exports.IconRunningInProgress = exports.IconCheckCircleFill = exports.IconAppSecurityDialogue = exports.IconModelHighlight = exports.IconAppKnowledge = exports.IconAppTools = exports.IconExclamationCircleRedFill = exports.IconAppWorkflow = exports.IconOverviewAPI = exports.IconAppVariable = exports.IconWorkflowEnd = exports.IconOverviewWeb = exports.IconKnowledgeWorkflow = exports.IconLLM = exports.IconSelected = exports.IconWorkflowCode = exports.IconWorkflowCondition = exports.IconKnowledgeNodata = exports.IconSearchWithoutData = exports.IconNodata = exports.IconPlugInNodata = exports.IconAgentNodata = exports.IconWorkflowNodata = void 0;
|
|
29
|
+
exports.IconTextProcessing = exports.IconSankeyDiagram = exports.IconTerminology = exports.IconAgentproFollow = exports.IconUploadFile = exports.IconUploadRadio = exports.IconKnowledgeBoard = exports.IconIndicatorMonitoring = exports.IconLoading2 = exports.IconQAExtract = exports.IconMore = exports.IconKnowledgeDataSynchronization = exports.IconKnowledgeChartTable = exports.IconTreeTerminologySearch = exports.IconTreeQASearch = exports.IconWorkflowKnowledgeRetrieval = exports.IconCompletedComparison = exports.IconPDSeparation = exports.IconRise2 = exports.IconComparison = exports.IconDecline2 = exports.IconAutomaticOptimization = exports.IconPromptWordTemplate = exports.IconGeneratedDocument = exports.IconTreeObject = exports.IconTreeRules = exports.IconDiagramCracking2 = exports.IconTaskCompleted = exports.IconFullscreenExit = exports.IconEmpty = exports.IconTag = exports.IconRotateLeft = exports.IconWorkflowChecklist = exports.IconDataInsight = exports.IconMenuIndicators = exports.IconMenuEvaluationSet = exports.IconDataOnlineTagging = exports.IconMenuHiagent = exports.IconModelGallery = exports.IconThumbDown = exports.IconZoomOut = exports.IconZoomIn = exports.IconMinusCircle = exports.IconThumbUp = exports.IconArrowDown = exports.IconCalendarClock = exports.IconCloseCircle = exports.IconCopy = exports.IconLaunch = exports.IconMenu = exports.IconMessage = exports.IconDataProduction = exports.IconTransform1 = exports.IconAgentChatStop = exports.IconDebugging = exports.IconResultEvaluation = exports.IconTraceText = exports.IconTraceRaw = exports.IconAgentpro = exports.IconAgentproStop = exports.IconTaskDone = exports.IconArtifactsBrowse = exports.IconAgentproReportDownload = exports.IconArtifactsCode = exports.IconAgentproFileList = exports.IconArtifactsKnowledge = exports.IconAgentproConfiguration = exports.IconArtifactsOther = exports.IconArtifactsShell = exports.IconArtifactsSearch = exports.IconArtifactsFile = exports.IconArtifactsPic = exports.IconVideoAgentKnowledge = exports.IconSpeaker = exports.IconExperienceCenter = exports.IconTouchpadMouseWorkflow = exports.IconTouchpadModeWorkflow = exports.IconLinkArrowSmall = exports.IconSavedConditions = exports.IconSaveButton = exports.IconText2video1 = exports.IconVolume = exports.IconFullscreen = exports.IconVideoTag = exports.IconMoonshot = exports.IconBGE = exports.IconQwen = exports.IconGPT35 = exports.IconGPT4 = exports.IconDoubao = exports.IconGoogleGemini = exports.IconDeepseek = exports.IconAWS = exports.IconClaude = exports.IconReleaseManagement = exports.IconDataProcessing1 = exports.IconModelExperienceCenter = exports.IconObservationIntegration = exports.IconModelOptimization = exports.IconComputingManagement = exports.IconMenuObservation = exports.IconMenuAgentCenter = exports.IconMenuEvaluation = exports.IconMenuTask = exports.IconModelService = exports.IconMenuPluginCenter = exports.IconMenuKnowledge = exports.IconTabelNodata = exports.IconImportMusic = exports.IconFastForward30 = exports.IconReturnNow15 = exports.IconVideoNext = exports.IconVideoPlay = exports.IconPrevious = exports.IconPause = exports.IconLowVolume = exports.IconSilence = exports.IconLoudVolume = exports.IconFull = exports.IconShrink = exports.IconPiplconExit = exports.IconPiplcon = exports.IconPieChartNodata = exports.IconLineGraphNodata = exports.IconHorizontalBarChartNodata = exports.IconVerticalBarChartNodata = exports.IconProcessEvaluation = exports.IconModelVoice = exports.IconSpeech2text = exports.IconMultiTimbre = exports.IconMultiLanguage = exports.IconText2speech = exports.IconFirstTokensCost = exports.IconNodeSuccessfullyInvoked = exports.IconFirstCharacterReplyTakesTime = exports.IconNodeInvocation = exports.IconSingleDialogueTimeConsuming = exports.IconNodeTimeConsumption = exports.IconTokenConsumption = exports.IconUploadingLarkbitable = exports.IconVideoRewind10s = exports.IconVideoFastForward10s = exports.IconAudioPlay = exports.IconAudioCycle = exports.IconAudioPause = exports.IconRemoveColor = exports.IconWorkflowVidMatching = exports.IconKnowledgePic = exports.IconRegionFolding = exports.IconSimilarityQuestion = exports.IconDataTransform = exports.IconPluginLocal = exports.IconPluginRemote = exports.IconPluginCloudDeployment = exports.IconAgentThinkingLanguage = exports.IconJapanese = exports.IconLock1 = exports.IconTreeModelVideoGenerationCanc = exports.IconTreeModelVideoGenerationComp = exports.IconTreeModelVideoGeneration = exports.IconOpen = exports.IconInstallationPackage = exports.IconRocket = exports.IconMemoryEmbedding = exports.IconAgentFeedbackIgnore = exports.IconTreeModelImageGeneration = exports.IconSystemCodePackage = exports.IconSystemNetworkControl = exports.IconSystemVoice = exports.IconSystemTimeout = exports.IconSystemAnnouncement = exports.IconSystemLimitations = exports.IconAgentFileConfiguration = exports.IconAudio = exports.IconVideo = exports.IconAgentFileSettings = exports.IconAgentFilesSettings = exports.IconImageEmbedding = exports.IconWorkflowImageGeneration = exports.IconBasicList = exports.IconTable = exports.IconTime = exports.IconWorkflow169 = exports.IconWorkflowFreedom = exports.IconWorkflow32 = exports.IconWorkflow219 = exports.IconWorkflow34 = exports.IconWorkflow11 = exports.IconWorkflow43 = exports.IconWorkflow23 = exports.IconWorkflow916 = exports.IconWorkflow32500 = exports.IconWorkflow219500 = exports.IconWorkflow34500 = exports.IconWorkflow23500 = exports.IconWorkflow43500 = exports.IconWorkflow916500 = exports.IconWorkflow169500 = exports.IconWorkflow11500 = exports.IconWorkflowFreedom500 = exports.IconTreeTrigger = exports.IconKnowledgeFluctuation = exports.IconWorkflowConditions = exports.IconHead2tailFrame = exports.IconImage2image = exports.IconFirstFrame = exports.IconPromptCreateCopy = exports.IconPromptDefault = exports.IconPromptGeneralStructure = exports.IconPromptRolePlaying = exports.IconPromptHallucinationCorrection = exports.IconPromptTaskExecution = exports.IconPromptKnowledgeAnswer = exports.IconPromptSkillInvocation = exports.IconPromptWrittenOptimization = exports.IconPromptReasoningThinking = exports.IconPromptMeeting = exports.IconPromptContentExpansion = exports.IconPromptInterviewQuestions = exports.IconPromptJinja = exports.IconPromptGeneral = exports.IconUploadingLarkdocx = exports.IconUploadingLarksheet = exports.IconUploadingWps = exports.IconDataExternal = exports.IconZip = exports.IconUploadingTxt = exports.IconUnknownFile = exports.IconUploadingPng = exports.IconUploadingPdf = exports.IconUploadingPpt = exports.IconUploadingDoc = exports.IconUploadingMd = exports.IconUploadingXlsx = exports.IconUploadingOfd = exports.IconUploadingJson = exports.IconUploadingCsv = exports.IconUploadingHtml = exports.IconWorkflowNodeInput = exports.IconWorkflowUpwards = exports.IconWorkflowDownward = exports.IconPluginListed = exports.IconPluginChoose = exports.IconPluginListedAdd = exports.IconTreeAbnormal = exports.IconTreeSuccess = exports.IconTreeFailure = exports.IconAgentCenterAnswer = exports.IconStop1 = exports.IconTreeAgent = exports.IconTreeQA = exports.IconAgentMicrophoneClose = exports.IconAgentVoiceInteraction = exports.IconAgentMicrophone = exports.IconAgentVoiceSwitch = exports.IconAgentVoiceAnswer = exports.IconAgentVoiceHangup = exports.IconAgentInputKeyboard = exports.IconAgentVoiceExit = exports.IconAgentSubtitlesOff = exports.IconAgentVoiceInterruptionTurnon = exports.IconAgentSubtitlesOn = exports.IconAgentVoiceInterruptionTurnoff = exports.IconWhiteList = exports.IconAnonymousAccess = exports.IconPermission = exports.IconWorkflowNode = exports.IconExtendedContext = exports.IconBarChart = exports.IconCircularGraph = exports.IconAgentFile = exports.IconTreeKnowledgeRetrieval = exports.IconTreeAgentInvocation = exports.IconTreeMetadataFiltering = exports.IconTreeDatabasePermission = exports.IconTreeContentAudit = exports.IconTreeRankModel = exports.IconTreeSafetyAudit = exports.IconTreeSQL = exports.IconTreePluginInvocation = exports.IconTreeEmbeddingModel = exports.IconTreeKnowledgePermission = exports.IconWebsdk = exports.IconMCPAgentPublish = exports.IconAgentSend = exports.IconImageUnderstanding1 = exports.IconPositioningChart = exports.IconDataEnhance = exports.IconDataAnnotation = exports.IconDataClean = exports.IconUploadVideo1 = exports.IconUploadImage1 = exports.IconDiagramCracking = exports.IconCalendar1 = exports.IconMagic = exports.IconUnconstraint = exports.IconConstraint = exports.IconImageUpload = exports.IconAiImageActive = exports.IconAiVideoDefault = exports.IconAiVideoActive = exports.IconAiImageDefault = exports.IconAiVideo = exports.IconUpgradeEngine = exports.IconAscent = exports.IconNvidia = exports.IconVisualModel = exports.IconText2video = exports.IconText2image = exports.IconImage2video = exports.IconMinimumQueue = exports.IconAgentWebService = exports.IconAgentDeploymentPackage = exports.IconAgentPublishApi = exports.IconAgentPublishEnterpriseWechat = exports.IconAgentPublishWeChat = exports.IconAgentPublishOthers = exports.IconAgentChannel = exports.IconAgentHistory = exports.IconAgentImport = exports.IconVariableAssignment = exports.IconAPIDatasource = exports.IconAPI = exports.IconInvokeMemoryDel = exports.IconUserVariable = exports.IconParallel = exports.IconMoreVertical1 = exports.IconExportRecord = exports.IconPublishVersion = exports.IconRuntimeConfiguration = exports.IconRunConfiguration = exports.IconArrowDownward = exports.IconArrowUpwards = exports.IconCustomApplication = exports.IconWkfOptimization = exports.IconWkfTemplate = exports.IconStarColor = exports.IconModelWarehouseDetail = exports.IconDistribution = exports.IconCheckboxList = exports.IconDatasetsReflux = exports.IconDataProcessing = exports.IconCardSurface = exports.IconCardLine = exports.IconKnowledgeWriting = exports.IconInformationCollection = exports.IconUnpin = exports.IconRename = exports.IconPin = exports.IconBatchMovement = exports.IconAsynchronousOperation = exports.IconParameterSetting = exports.IconFolderClose = exports.IconFolderOpen = exports.IconObs = exports.IconDataSetBos = exports.IconDataSetDetail = exports.IconDataSetBlue = exports.IconRm = exports.IconSmoothUpdate = exports.IconSingleMachine = exports.IconStopUpdate = exports.IconRl = exports.IconContinuePretrain = exports.IconAddMaas = exports.IconMemoryWebapp = exports.IconBatchProcessing = exports.IconUnfold2 = exports.IconOutput = exports.IconScale = exports.IconWebEmb = exports.IconThreatAttribution = exports.IconProtection = exports.IconShield = exports.IconCommentApply = exports.IconWflHttp = exports.IconVariableAggregation = exports.IconWfMemory = exports.IconFunctionCall = exports.IconImageAi = exports.IconSystemPresetting = exports.IconManagementBackEnd = exports.IconModelServiceC = exports.IconModelFile = exports.IconVectorModel = exports.IconLanguageModel = exports.IconSortingModel = exports.IconMenteor = exports.IconNist = exports.IconBleu = exports.IconImageUnderstanding = exports.IconArrangeMemory = exports.IconCaretDown = exports.IconAddVersion = exports.IconWflSetVariable = exports.IconAgtDebug = exports.IconSessionFlow = exports.IconDataDataset = exports.IconModelAppliction = exports.IconModelWarehouse = exports.IconShare = exports.IconTrialOperation = exports.IconColumnConfiguration1 = exports.IconMessageFill = exports.IconCardCollectionLinearity = exports.IconAgentQuote = exports.IconCardCollectionSurface = exports.IconAgentUse = exports.IconAgentDialogue = exports.IconOfficialV = exports.IconTokenQuantity = exports.IconClosure = exports.IconPackaging = exports.IconRerank = exports.IconEn = exports.IconTraditionalChinese = exports.IconSimplifiedChinese = exports.IconGeneralSuccessHighSaturation = exports.IconCopyLine = exports.IconCollect2 = exports.IconAddGroup = exports.IconRouge1 = exports.IconRougeL = exports.IconRouge2 = exports.IconF1 = exports.IconAccuracy = exports.IconTemplate1 = exports.IconNoRule = exports.IconJavascript = exports.IconUserTemplate = exports.IconKnowledgeLeft = exports.IconKnowledgeRight = exports.IconKnowledgeAddto = exports.IconKnowledgeMinus = exports.IconGroup = exports.IconOtherAlarm = exports.IconCardInfo = exports.Icon404ErrorHighSaturation = exports.Icon403ErrorLowSaturation = exports.IconNetworkErrorLowSaturation = exports.IconNoPermissionSimplified = exports.IconNetworkErrorHighSaturation = exports.IconSearchNullSimplified = exports.Icon404ErrorLowSaturation = exports.IconNoPicHighSaturation = exports.IconNoDataSimplified = exports.IconNoContentHighSaturation = exports.IconNoChartLowSaturation = exports.IconNoPermissionHighSaturation = exports.Icon403ErrorHighSaturation = exports.IconNoDataHighSaturation = exports.IconNoChartHighSaturation = exports.IconErrorTypeSimplified = exports.IconNoContentLowSaturation = exports.IconNoPermissionLowSaturation = exports.IconNoPicLowSaturation = exports.IconNetWorkErrorSimplified = exports.IconNoContentSimplified = exports.IconSearchNullHighSaturation = exports.IconNewWindow = exports.IconCheckTriangleFill = exports.IconCheckCircleFilled = exports.IconCheckCircleBlue = exports.IconCloseCircleFill = exports.IconClockCircleFill = exports.IconInfoCircleFill = exports.IconCancelingInProgress = exports.IconLoading = exports.IconMinusCircleFillGrey = exports.IconRollbackingInProgress = exports.IconSound = exports.IconDrawerFold = exports.IconDocumentFeedback = exports.IconEditFilled = exports.IconDrawerExpand = exports.IconIconNewWindow = exports.IconCaretDownRed = exports.IconHeart = exports.IconSync = exports.IconMoreFilter = exports.IconCaretRight = exports.IconGitMerge = exports.IconCaretLeft = exports.IconCheck = exports.IconRetry = exports.IconFolder = exports.IconImportRecord = exports.IconClipboardError = exports.IconPen = exports.IconPdfFile = exports.IconArrowRise = exports.IconDocument = exports.IconDrawer = exports.IconProfitModelAlt = exports.IconPromise = exports.IconRiskWarning = exports.IconArrowFall = exports.IconRecordStop = exports.IconHorseToy = exports.IconKey = exports.IconFencing = exports.IconLoudspeaker = exports.IconHurricane = exports.IconReadingList = exports.IconEncryptedDocument = exports.IconComprehensiveEvaluation = exports.IconPlan = exports.IconTextAlt = exports.IconResign = exports.IconBlockStorage = exports.IconImageEditing = exports.IconBlock = exports.IconSubordinates = exports.IconHierarchy = exports.IconCloudEngine = exports.IconArrowFallSquare = exports.IconFlowControl = exports.IconArrowRiseSquare = exports.IconSwipe = exports.IconLoadBalancing = exports.IconDevProcess = exports.IconClean = exports.IconBlockchain = exports.IconDistributionConfig = exports.IconAnalysis = exports.IconWifiSecurity = exports.IconPinFill = exports.IconUpdate = exports.IconAntiViolence = exports.IconPlayFill = exports.IconMonitorFill = exports.IconMinusCircleFill = exports.IconExclamationCircle = exports.IconSortAlt = exports.IconPlusCircle = exports.IconLink = exports.IconSwapAlt = exports.IconSwap = exports.IconEyeInvisible = exports.IconInvisible = exports.IconNotificationOff = exports.IconEye = exports.IconUserGroup = exports.IconEllipse = exports.IconDoneAlt = exports.IconDetails = exports.IconMindMapping = exports.IconAttachment = exports.IconQuestionMarkCircle = exports.IconUnorderedList = exports.IconMenuUnfold = exports.IconMenuFold = exports.IconDescendingSorting = exports.IconQuestionCircle = exports.IconBrush = exports.IconUndo = exports.IconRedo = exports.IconAddUser = exports.IconErrorFill = exports.IconInfoCircle = exports.IconMinus = exports.IconRise = exports.IconSuccessFill = exports.IconWarningFill = exports.IconUpload = exports.IconFilter = exports.IconDragDotVertical = exports.IconSearch = exports.IconDrop = exports.IconUploadCloud = exports.IconDeleteFill = exports.IconDown = exports.IconLeft = exports.IconUp = exports.IconRight = exports.IconStar = exports.IconAlbum = exports.IconCreateFile = exports.IconModel1 = exports.IconTechnology = exports.IconMd = exports.IconMix = exports.IconImage = exports.IconText1 = exports.IconDoc1 = exports.IconMultiple = exports.IconColumnConfiguration = exports.IconPython = exports.IconNotRegex = exports.IconSelectAll = exports.IconFrame = exports.IconCustom = exports.IconRegex = exports.IconIContains = exports.IconNotIContains = exports.IconNotEquals = exports.IconContains = exports.IconFlagAlt = exports.IconNotContains = exports.IconEquals = exports.IconImportFileList = exports.IconImportFile = exports.IconUploadDefaut = exports.IconUploadActive = exports.IconUndeliver = exports.IconImportDefault = exports.IconRecording = exports.IconDeleteLine = exports.IconAnnotation = exports.IconPreview = exports.IconConfiguration = exports.IconMergePd = exports.IconDataTableBlock = exports.IconShortcutInstructions = exports.IconVoiceai = exports.IconMenuAgent = exports.IconMenuWorkflow = exports.IconMenuPrompt = exports.IconMenuDatabase = exports.IconMenuPlugin = exports.IconMenuConversation = exports.IconCodeUn = exports.IconLoginFailure = exports.IconNoOntology = exports.IconDownload = exports.IconRadiationPoint = exports.IconNode400 = exports.IconCirclePoint = exports.IconLine = exports.IconScatterPoint = exports.IconArrowRight = exports.IconBlowUp = exports.IconPlus = exports.IconWorkflowMinification = exports.IconArrayPoint = exports.IconMergeGraph = exports.IconUploadingError = exports.IconSetting = exports.IconSelect = exports.IconAuth = exports.IconClearHistory = exports.IconEarth = exports.IconExport = exports.IconClose = exports.IconClockCircle = exports.IconArrowRightCorner = exports.IconRefresh = exports.IconFairyStick = exports.IconMode = exports.IconLastStep = exports.IconDeleteKv = exports.IconOrientation = exports.IconEnable = exports.IconUploadingDown = exports.IconOverviewRefresh = exports.IconEnumeration = exports.IconText = exports.IconStop = exports.IconExportBold = exports.IconConfig = exports.IconVoiceClose = exports.IconVoiceOpen = exports.IconCodeTesting = exports.IconKnowledge = exports.IconPublish = exports.IconHomeAt = exports.IconSkip = exports.IconIde = exports.IconCode = exports.IconSwitchover = exports.IconDrag = exports.IconUnfold = exports.IconParagraph = exports.IconHand = exports.IconVariable = exports.IconOverviewKey = exports.IconInfo = exports.IconEdit = exports.IconWorkflowFullscreen = exports.IconLocation = exports.IconWrapper = exports.IconOverviewPreview = exports.IconNextStep = exports.IconOptimalLayout = exports.IconAgent = exports.IconPublishedAgent = exports.IconDatabase = exports.IconControlled25D = exports.IconUnlock25D = exports.IconToolsWorkflow = exports.IconWorkflowStart = exports.IconBreak = exports.IconSso = exports.IconDataNode = exports.IconEvent = exports.IconMessageNodes = exports.IconWfTerminologyBank = exports.IconTimer = exports.IconIIntentionRecognition = exports.IconExclamationCircleFill = exports.IconCycleVertices = exports.IconTerminologyBank = exports.IconKnowledgeGraph = exports.IconLLMopsLogo = exports.IconPlatformManagement = exports.IconAccountCenter = exports.IconWorkflowDebug = exports.IconEarthGlobal = exports.IconResourceAdministration = exports.IconRunningProcess = exports.IconLessee = exports.IconRoleManagement = exports.IconDisplaySetup = exports.IconSkill = exports.IconLineChart = exports.IconSecuritySettings = exports.IconTpc = exports.IconOperate = exports.IconOperationalAudit = exports.IconOverlapRectConfig = exports.IconClipboardFill = exports.IconPromptFile = exports.IconRun = exports.IconTakeover = exports.IconProjectFill = exports.IconChartFill = exports.IconConversation = exports.IconWorkspaceSetting = exports.IconHistory = exports.IconOtherTool = exports.IconRemove = exports.IconSend = exports.IconVoice3 = exports.IconQA = exports.IconModelManagement = exports.IconDelete = exports.IconApplicationApproval = exports.IconOtherTag = exports.IconWorkspaceManagement = exports.IconLicence = exports.IconArchive = exports.IconDialogueSuggestion = exports.IconPublishAreality = exports.IconPromptAssessment = exports.IconPicturePlaceholder = exports.IconPersonalSpace = exports.IconQuote = exports.IconRemarks = exports.IconDebug = exports.IconStopRecordingFill = exports.IconEditAreality = exports.IconIntelligentVideoServiceP = exports.IconFlowChoreography = exports.IconEmptyFile = exports.IconUser = exports.IconBasicEdition = exports.IconBadAreality = exports.IconCopyAreality = exports.IconKnowledgeBase = exports.IconLocalUpload = exports.IconOverview = exports.IconExcellentAreality = exports.IconOverviewCreationTime = exports.IconArrange = exports.IconAIPAccess = exports.IconDoc = exports.IconPlugin = exports.IconModelDefault = exports.IconSettings = exports.IconGoodjob = exports.IconDataXls = exports.IconHiagent = exports.IconUserinput = exports.IconAdvancedReview = exports.IconFeishu = exports.IconInfoColor = exports.IconFileCloudStorage = exports.IconClockCircleGreyFill = exports.IconNewAgent = exports.IconHomebotC = exports.IconWorkflowWorkflow = exports.IconRunningInProgress = exports.IconCheckCircleFill = exports.IconAppSecurityDialogue = exports.IconModelHighlight = exports.IconAppKnowledge = exports.IconAppTools = exports.IconExclamationCircleRedFill = exports.IconAppWorkflow = exports.IconOverviewAPI = exports.IconAppVariable = exports.IconWorkflowEnd = exports.IconOverviewWeb = exports.IconKnowledgeWorkflow = exports.IconLLM = exports.IconSelected = exports.IconWorkflowCode = exports.IconWorkflowCondition = exports.IconKnowledgeNodata = exports.IconSearchWithoutData = exports.IconNodata = exports.IconPlugInNodata = exports.IconAgentNodata = exports.IconWorkflowNodata = void 0;
|
|
30
30
|
var IconWorkflowNodata_1 = require("./IconWorkflowNodata");
|
|
31
31
|
Object.defineProperty(exports, "IconWorkflowNodata", { enumerable: true, get: function () { return __importDefault(IconWorkflowNodata_1).default; } });
|
|
32
32
|
var IconAgentNodata_1 = require("./IconAgentNodata");
|
|
@@ -1633,5 +1633,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
1633
1633
|
Object.defineProperty(exports, "IconTerminology", { enumerable: true, get: function () { return __importDefault(IconTerminology_1).default; } });
|
|
1634
1634
|
var IconSankeyDiagram_1 = require("./IconSankeyDiagram");
|
|
1635
1635
|
Object.defineProperty(exports, "IconSankeyDiagram", { enumerable: true, get: function () { return __importDefault(IconSankeyDiagram_1).default; } });
|
|
1636
|
+
var IconTextProcessing_1 = require("./IconTextProcessing");
|
|
1637
|
+
Object.defineProperty(exports, "IconTextProcessing", { enumerable: true, get: function () { return __importDefault(IconTextProcessing_1).default; } });
|
|
1636
1638
|
__exportStar(require("./type"), exports);
|
|
1637
1639
|
});
|