@datatechsolutions/ui 2.7.117 → 2.7.119
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/dist/{chunk-OQAZ2BIC.mjs → chunk-55S2KOTZ.mjs} +2 -2
- package/dist/{chunk-OQAZ2BIC.mjs.map → chunk-55S2KOTZ.mjs.map} +1 -1
- package/dist/{chunk-MGR7H5X2.mjs → chunk-6KYBGBI4.mjs} +18 -3
- package/dist/chunk-6KYBGBI4.mjs.map +1 -0
- package/dist/{chunk-UZHWA7CM.js → chunk-DOO5ICHD.js} +35 -9
- package/dist/chunk-DOO5ICHD.js.map +1 -0
- package/dist/{chunk-5YIUJXPD.js → chunk-E42PD4X6.js} +2 -2
- package/dist/{chunk-5YIUJXPD.js.map → chunk-E42PD4X6.js.map} +1 -1
- package/dist/{chunk-FAAXHLWI.js → chunk-F4FMGGHO.js} +18 -2
- package/dist/chunk-F4FMGGHO.js.map +1 -0
- package/dist/{chunk-2KZEO34C.mjs → chunk-MAYOV7OM.mjs} +29 -3
- package/dist/chunk-MAYOV7OM.mjs.map +1 -0
- package/dist/workflow/index.d.mts +3 -3
- package/dist/workflow/index.d.ts +3 -3
- package/dist/workflow/index.js +133 -123
- package/dist/workflow/index.js.map +1 -1
- package/dist/workflow/index.mjs +12 -6
- package/dist/workflow/index.mjs.map +1 -1
- package/dist/workflow/utils.d.mts +13 -1
- package/dist/workflow/utils.d.ts +13 -1
- package/dist/workflow/utils.js +10 -6
- package/dist/workflow/utils.mjs +2 -2
- package/dist/workflow/workflow-canvas.d.mts +1 -1
- package/dist/workflow/workflow-canvas.d.ts +1 -1
- package/dist/workflow/workflow-canvas.js +3 -3
- package/dist/workflow/workflow-canvas.mjs +2 -2
- package/dist/{workflow-canvas-AmdoIvqQ.d.ts → workflow-canvas-B3k03HVM.d.mts} +2 -1
- package/dist/{workflow-canvas-CBA_3y6P.d.mts → workflow-canvas-CVkbfTQu.d.ts} +2 -1
- package/package.json +1 -1
- package/dist/chunk-2KZEO34C.mjs.map +0 -1
- package/dist/chunk-FAAXHLWI.js.map +0 -1
- package/dist/chunk-MGR7H5X2.mjs.map +0 -1
- package/dist/chunk-UZHWA7CM.js.map +0 -1
package/dist/workflow/index.js
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
require('../chunk-2HUN5ZXT.js');
|
|
5
|
-
var
|
|
6
|
-
var
|
|
5
|
+
var chunkE42PD4X6_js = require('../chunk-E42PD4X6.js');
|
|
6
|
+
var chunkDOO5ICHD_js = require('../chunk-DOO5ICHD.js');
|
|
7
7
|
var chunkYRY7HFKG_js = require('../chunk-YRY7HFKG.js');
|
|
8
8
|
var chunkNJ6PBGQM_js = require('../chunk-NJ6PBGQM.js');
|
|
9
|
-
var
|
|
9
|
+
var chunkF4FMGGHO_js = require('../chunk-F4FMGGHO.js');
|
|
10
10
|
require('../chunk-UZ3CMNUJ.js');
|
|
11
11
|
var react = require('react');
|
|
12
12
|
var nextIntl = require('next-intl');
|
|
@@ -83,7 +83,7 @@ function OutputCard({ label, value }) {
|
|
|
83
83
|
function AgentProfileHeader({ agent, models, t, selectedModelId, setSelectedModelId, selectedFramework, temperature, setTemperature, elo, setElo, onChanged }) {
|
|
84
84
|
const modelName = models.find((model) => model.id === selectedModelId)?.name ?? selectedModelId ?? "\u2014";
|
|
85
85
|
const avatarUrl = agent.avatar;
|
|
86
|
-
const frameworkMeta =
|
|
86
|
+
const frameworkMeta = chunkDOO5ICHD_js.getFrameworkMeta(selectedFramework);
|
|
87
87
|
const tierInfo = getEloTier(elo);
|
|
88
88
|
const difficultyConfig = {
|
|
89
89
|
beginner: { color: "bg-cyan-100 text-cyan-700 dark:bg-cyan-900/30 dark:text-cyan-400", labelKey: "agentDrawer.tierBeginner" },
|
|
@@ -368,12 +368,12 @@ function ConfigTab({ agent, models, t, selectedModelId, setSelectedModelId, sele
|
|
|
368
368
|
const isPrecise = temperature <= 0.3;
|
|
369
369
|
const isBalanced = temperature > 0.3 && temperature <= 0.7;
|
|
370
370
|
const isCreative = temperature > 0.7;
|
|
371
|
-
const frameworkKeys = Object.keys(
|
|
372
|
-
const compatibleModels =
|
|
371
|
+
const frameworkKeys = Object.keys(chunkDOO5ICHD_js.FRAMEWORK_META);
|
|
372
|
+
const compatibleModels = chunkDOO5ICHD_js.getCompatibleModels(models, selectedFramework);
|
|
373
373
|
const handleFrameworkChange = react.useCallback((newFramework) => {
|
|
374
374
|
setSelectedFramework(newFramework);
|
|
375
|
-
if (!
|
|
376
|
-
const compatible =
|
|
375
|
+
if (!chunkDOO5ICHD_js.isModelCompatibleWithFramework(selectedModelId, newFramework)) {
|
|
376
|
+
const compatible = chunkDOO5ICHD_js.getCompatibleModels(models, newFramework);
|
|
377
377
|
if (compatible.length > 0) {
|
|
378
378
|
setSelectedModelId(compatible[0].id);
|
|
379
379
|
}
|
|
@@ -384,9 +384,9 @@ function ConfigTab({ agent, models, t, selectedModelId, setSelectedModelId, sele
|
|
|
384
384
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
385
385
|
/* @__PURE__ */ jsxRuntime.jsx("label", { className: "mb-2 block text-xs font-medium text-gray-500 dark:text-gray-400", children: t("agentDrawer.framework") }),
|
|
386
386
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-wrap gap-1.5", children: frameworkKeys.map((key) => {
|
|
387
|
-
const meta =
|
|
387
|
+
const meta = chunkDOO5ICHD_js.FRAMEWORK_META[key];
|
|
388
388
|
const isSelected = key === selectedFramework;
|
|
389
|
-
const compatCount =
|
|
389
|
+
const compatCount = chunkDOO5ICHD_js.getCompatibleModels(models, key).length;
|
|
390
390
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
391
391
|
"button",
|
|
392
392
|
{
|
|
@@ -416,7 +416,7 @@ function ConfigTab({ agent, models, t, selectedModelId, setSelectedModelId, sele
|
|
|
416
416
|
] }),
|
|
417
417
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid grid-cols-2 gap-2", children: models.map((model) => {
|
|
418
418
|
const isSelected = model.id === selectedModelId;
|
|
419
|
-
const isCompatible =
|
|
419
|
+
const isCompatible = chunkDOO5ICHD_js.isModelCompatibleWithFramework(model.id, selectedFramework);
|
|
420
420
|
const { IconComponent, color, providerLabel } = getModelIcon(model.id);
|
|
421
421
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
422
422
|
"button",
|
|
@@ -520,7 +520,7 @@ function ConfigTab({ agent, models, t, selectedModelId, setSelectedModelId, sele
|
|
|
520
520
|
] });
|
|
521
521
|
}
|
|
522
522
|
function ResultsTab({ agentId, t }) {
|
|
523
|
-
const nodeResults =
|
|
523
|
+
const nodeResults = chunkDOO5ICHD_js.useWorkflowStore((state) => state.nodeResults);
|
|
524
524
|
const agentResult = react.useMemo(() => {
|
|
525
525
|
return nodeResults[agentId] ?? null;
|
|
526
526
|
}, [nodeResults, agentId]);
|
|
@@ -549,9 +549,9 @@ function ResultsTab({ agentId, t }) {
|
|
|
549
549
|
}
|
|
550
550
|
function AgentDrawer({ onSaved }) {
|
|
551
551
|
const t = nextIntl.useTranslations("agents.workflow");
|
|
552
|
-
const activeDrawer =
|
|
553
|
-
const agentData =
|
|
554
|
-
const closeDrawer =
|
|
552
|
+
const activeDrawer = chunkDOO5ICHD_js.useDrawerStore((s) => s.activeDrawer);
|
|
553
|
+
const agentData = chunkDOO5ICHD_js.useDrawerStore((s) => s.agentData);
|
|
554
|
+
const closeDrawer = chunkDOO5ICHD_js.useDrawerStore((s) => s.closeDrawer);
|
|
555
555
|
const open = activeDrawer === "agent";
|
|
556
556
|
const agent = agentData?.agent ?? null;
|
|
557
557
|
const models = agentData?.models ?? [];
|
|
@@ -594,7 +594,7 @@ function AgentDrawer({ onSaved }) {
|
|
|
594
594
|
tab
|
|
595
595
|
)) });
|
|
596
596
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
597
|
-
|
|
597
|
+
chunkDOO5ICHD_js.WorkspaceDrawer,
|
|
598
598
|
{
|
|
599
599
|
open,
|
|
600
600
|
onClose: handleClose,
|
|
@@ -742,9 +742,9 @@ function SubworkflowDrawer({ onSaved, onMaximize }) {
|
|
|
742
742
|
}, [tool, onSaved, name, category, description, timeoutMs, latestGraphRef, markSaved]);
|
|
743
743
|
if (!tool) return null;
|
|
744
744
|
const categoryKey = category ?? "external";
|
|
745
|
-
const gradient = tool.color ??
|
|
746
|
-
const categoryPill =
|
|
747
|
-
const IconComponent =
|
|
745
|
+
const gradient = tool.color ?? chunkDOO5ICHD_js.CATEGORY_COLORS[categoryKey] ?? chunkDOO5ICHD_js.CATEGORY_COLORS.external;
|
|
746
|
+
const categoryPill = chunkDOO5ICHD_js.CATEGORY_PILL_COLORS[categoryKey] ?? chunkDOO5ICHD_js.CATEGORY_PILL_COLORS.external;
|
|
747
|
+
const IconComponent = chunkDOO5ICHD_js.ICON_MAP[tool.icon ?? ""] ?? outline.ArrowPathRoundedSquareIcon;
|
|
748
748
|
const graph = latestGraphRef.current;
|
|
749
749
|
const startNode = graph.nodes.find((n) => n.type === "start");
|
|
750
750
|
const endNode = graph.nodes.find((n) => n.type === "end");
|
|
@@ -753,7 +753,7 @@ function SubworkflowDrawer({ onSaved, onMaximize }) {
|
|
|
753
753
|
const inputVariables = (startConfig?.inputVariables ?? []).map((v) => ({ name: v, type: "string" }));
|
|
754
754
|
const outputVariables = (endConfig?.outputVariables ?? []).map((v) => ({ name: v, type: "string" }));
|
|
755
755
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
756
|
-
|
|
756
|
+
chunkDOO5ICHD_js.WorkspaceDrawer,
|
|
757
757
|
{
|
|
758
758
|
open,
|
|
759
759
|
onClose: closeDrawer,
|
|
@@ -782,7 +782,7 @@ function SubworkflowDrawer({ onSaved, onMaximize }) {
|
|
|
782
782
|
{
|
|
783
783
|
type: "button",
|
|
784
784
|
onClick: () => setCategory(cat),
|
|
785
|
-
className: `rounded-full px-2 py-1 text-[9px] font-semibold transition-all ${cat === category ? `${
|
|
785
|
+
className: `rounded-full px-2 py-1 text-[9px] font-semibold transition-all ${cat === category ? `${chunkDOO5ICHD_js.CATEGORY_PILL_COLORS[cat] ?? chunkDOO5ICHD_js.CATEGORY_PILL_COLORS.external} ring-1 ring-current/20` : "bg-white/30 text-gray-500 hover:bg-white/50 dark:bg-white/5 dark:text-gray-400"}`,
|
|
786
786
|
children: cat
|
|
787
787
|
},
|
|
788
788
|
cat
|
|
@@ -873,7 +873,7 @@ function SubworkflowDrawer({ onSaved, onMaximize }) {
|
|
|
873
873
|
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-center text-[10px] font-medium text-emerald-500", children: t("subworkflowDrawer.saved") }) })
|
|
874
874
|
] }),
|
|
875
875
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex-1", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
876
|
-
|
|
876
|
+
chunkDOO5ICHD_js.WorkflowCanvas,
|
|
877
877
|
{
|
|
878
878
|
initialGraph,
|
|
879
879
|
agents: [],
|
|
@@ -889,9 +889,9 @@ function SubworkflowDrawer({ onSaved, onMaximize }) {
|
|
|
889
889
|
}
|
|
890
890
|
function PipelineSettingsDrawer({ onSave }) {
|
|
891
891
|
const t = nextIntl.useTranslations("agents.workflow");
|
|
892
|
-
const activeDrawer =
|
|
893
|
-
const data =
|
|
894
|
-
const closeDrawer =
|
|
892
|
+
const activeDrawer = chunkDOO5ICHD_js.useDrawerStore((s) => s.activeDrawer);
|
|
893
|
+
const data = chunkDOO5ICHD_js.useDrawerStore((s) => s.pipelineSettingsData);
|
|
894
|
+
const closeDrawer = chunkDOO5ICHD_js.useDrawerStore((s) => s.closeDrawer);
|
|
895
895
|
const open = activeDrawer === "pipeline-settings";
|
|
896
896
|
const [nameValue, setNameValue] = react.useState("");
|
|
897
897
|
const [descriptionValue, setDescriptionValue] = react.useState("");
|
|
@@ -916,7 +916,7 @@ function PipelineSettingsDrawer({ onSave }) {
|
|
|
916
916
|
}
|
|
917
917
|
};
|
|
918
918
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
919
|
-
|
|
919
|
+
chunkDOO5ICHD_js.WorkspaceDrawer,
|
|
920
920
|
{
|
|
921
921
|
open,
|
|
922
922
|
onClose: closeDrawer,
|
|
@@ -1058,9 +1058,9 @@ function CollapsibleSection({ title, icon, colorClass, defaultOpen = true, count
|
|
|
1058
1058
|
] });
|
|
1059
1059
|
}
|
|
1060
1060
|
function LogicNodeItemCard({ item, translationFunction }) {
|
|
1061
|
-
const IconComponent =
|
|
1062
|
-
const gradient =
|
|
1063
|
-
const defaultConfig =
|
|
1061
|
+
const IconComponent = chunkDOO5ICHD_js.LOGIC_ICON_MAP[item.nodeType];
|
|
1062
|
+
const gradient = chunkDOO5ICHD_js.LOGIC_NODE_GRADIENTS[item.nodeType] ?? "from-gray-400 to-gray-500";
|
|
1063
|
+
const defaultConfig = chunkF4FMGGHO_js.createDefaultLogicNodeConfig(item.nodeType);
|
|
1064
1064
|
const configJson = defaultConfig ? JSON.stringify(defaultConfig) : void 0;
|
|
1065
1065
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1066
1066
|
"div",
|
|
@@ -1182,7 +1182,13 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], onC
|
|
|
1182
1182
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute -bottom-0.5 -right-0.5 flex h-3.5 w-3.5 items-center justify-center rounded-full bg-indigo-500 ring-1.5 ring-white dark:ring-gray-900", children: /* @__PURE__ */ jsxRuntime.jsx(outline.CpuChipIcon, { className: "h-2 w-2 text-white" }) })
|
|
1183
1183
|
] }),
|
|
1184
1184
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "min-w-0 flex-1", children: [
|
|
1185
|
-
/* @__PURE__ */ jsxRuntime.
|
|
1185
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-1.5", children: [
|
|
1186
|
+
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "truncate text-xs font-medium text-gray-900 dark:text-white", children: agent.name }),
|
|
1187
|
+
(() => {
|
|
1188
|
+
const tier = chunkF4FMGGHO_js.getAgentTier(Number(agent.elo ?? 0));
|
|
1189
|
+
return /* @__PURE__ */ jsxRuntime.jsx("span", { className: `shrink-0 rounded-full px-1.5 py-px text-[8px] font-bold ${tier.pillColor}`, children: t(`agentDrawer.tier${tier.key.charAt(0).toUpperCase()}${tier.key.slice(1)}`) });
|
|
1190
|
+
})()
|
|
1191
|
+
] }),
|
|
1186
1192
|
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "truncate text-[10px] text-gray-400 dark:text-gray-500", children: agent.role ?? agent.agentId })
|
|
1187
1193
|
] })
|
|
1188
1194
|
]
|
|
@@ -1291,8 +1297,8 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], onC
|
|
|
1291
1297
|
outputVariable: `${entity.label.replace(/\s+/g, "")}Data`,
|
|
1292
1298
|
limit: entity.defaultLimit
|
|
1293
1299
|
});
|
|
1294
|
-
const EntityIcon =
|
|
1295
|
-
const entityGradient =
|
|
1300
|
+
const EntityIcon = chunkDOO5ICHD_js.getEntityIcon(entity.id);
|
|
1301
|
+
const entityGradient = chunkDOO5ICHD_js.getEntityGradient(entity.id);
|
|
1296
1302
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1297
1303
|
"div",
|
|
1298
1304
|
{
|
|
@@ -1631,9 +1637,9 @@ function formatDuration2(durationMs) {
|
|
|
1631
1637
|
}
|
|
1632
1638
|
function RunPanel({ open, onClose, onRun, onStop }) {
|
|
1633
1639
|
const translations = nextIntl.useTranslations("agents.workflow.runPanel");
|
|
1634
|
-
const nodes =
|
|
1635
|
-
const isRunning =
|
|
1636
|
-
const nodeResults =
|
|
1640
|
+
const nodes = chunkDOO5ICHD_js.useWorkflowStore((state) => state.nodes);
|
|
1641
|
+
const isRunning = chunkDOO5ICHD_js.useWorkflowStore((state) => state.isRunning);
|
|
1642
|
+
const nodeResults = chunkDOO5ICHD_js.useWorkflowStore((state) => state.nodeResults);
|
|
1637
1643
|
const startNode = nodes.find((node) => node.type === "start");
|
|
1638
1644
|
const hasEndNode = nodes.some((node) => node.type === "end");
|
|
1639
1645
|
const hasValidStartConfig = Boolean(
|
|
@@ -1918,8 +1924,8 @@ function inferVariables(config, nodeType) {
|
|
|
1918
1924
|
}
|
|
1919
1925
|
function VariableInspector({ open, onClose }) {
|
|
1920
1926
|
const translations = nextIntl.useTranslations("agents.workflow.variableInspector");
|
|
1921
|
-
const nodes =
|
|
1922
|
-
const edges =
|
|
1927
|
+
const nodes = chunkDOO5ICHD_js.useWorkflowStore((state) => state.nodes);
|
|
1928
|
+
const edges = chunkDOO5ICHD_js.useWorkflowStore((state) => state.edges);
|
|
1923
1929
|
const [expandedNodes, setExpandedNodes] = react.useState(/* @__PURE__ */ new Set());
|
|
1924
1930
|
const toggleNodeExpansion = react.useCallback((nodeId) => {
|
|
1925
1931
|
setExpandedNodes((current) => {
|
|
@@ -1981,8 +1987,8 @@ function VariableInspector({ open, onClose }) {
|
|
|
1981
1987
|
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-2 text-sm text-gray-500 dark:text-gray-400", children: translations("noNodes") })
|
|
1982
1988
|
] }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: "divide-y divide-gray-100 dark:divide-gray-800", children: nodeVariableEntries.map((entry) => {
|
|
1983
1989
|
const isExpanded = expandedNodes.has(entry.nodeId);
|
|
1984
|
-
const IconComponent =
|
|
1985
|
-
const gradient =
|
|
1990
|
+
const IconComponent = chunkDOO5ICHD_js.LOGIC_ICON_MAP[entry.nodeType];
|
|
1991
|
+
const gradient = chunkDOO5ICHD_js.LOGIC_NODE_GRADIENTS[entry.nodeType] ?? "from-gray-400 to-gray-500";
|
|
1986
1992
|
const inputVariables = entry.variables.filter((variable) => variable.direction === "input");
|
|
1987
1993
|
const outputVariables = entry.variables.filter((variable) => variable.direction === "output");
|
|
1988
1994
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { "data-testid": `variable-node-${entry.nodeId}`, children: [
|
|
@@ -2048,7 +2054,7 @@ function RunInputDialog({
|
|
|
2048
2054
|
onRun
|
|
2049
2055
|
}) {
|
|
2050
2056
|
const t = nextIntl.useTranslations("agents.workflow.runInputDialog");
|
|
2051
|
-
const nodes =
|
|
2057
|
+
const nodes = chunkDOO5ICHD_js.useWorkflowStore((state) => state.nodes);
|
|
2052
2058
|
const [values, setValues] = react.useState({});
|
|
2053
2059
|
const inputVariableNames = react.useMemo(() => {
|
|
2054
2060
|
const storeStartNode = nodes.find((node) => node.type === "start");
|
|
@@ -2130,8 +2136,8 @@ function PreviewPanel({ open, onClose, workflowId, loadRuns }) {
|
|
|
2130
2136
|
const [isLoadingRuns, setIsLoadingRuns] = react.useState(false);
|
|
2131
2137
|
const [selectedRun, setSelectedRun] = react.useState(null);
|
|
2132
2138
|
const [selectedNode, setSelectedNode] = react.useState(null);
|
|
2133
|
-
const isRunning =
|
|
2134
|
-
const nodeResults =
|
|
2139
|
+
const isRunning = chunkDOO5ICHD_js.useWorkflowStore((state) => state.isRunning);
|
|
2140
|
+
const nodeResults = chunkDOO5ICHD_js.useWorkflowStore((state) => state.nodeResults);
|
|
2135
2141
|
const refreshRuns = react.useCallback(async () => {
|
|
2136
2142
|
setIsLoadingRuns(true);
|
|
2137
2143
|
try {
|
|
@@ -2287,7 +2293,7 @@ var AutoSaveWorkspace = react.memo(function AutoSaveWorkspace2({
|
|
|
2287
2293
|
onAutoSaveGraph(graph);
|
|
2288
2294
|
}, [onAutoSaveGraph, onGraphSnapshot]);
|
|
2289
2295
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2290
|
-
|
|
2296
|
+
chunkDOO5ICHD_js.Workspace,
|
|
2291
2297
|
{
|
|
2292
2298
|
...workspaceProps,
|
|
2293
2299
|
onGraphChange: handleGraphChange
|
|
@@ -2657,14 +2663,14 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
2657
2663
|
}
|
|
2658
2664
|
|
|
2659
2665
|
// src/workflow/store/selectors.ts
|
|
2660
|
-
var useCanUndo = () =>
|
|
2661
|
-
var useCanRedo = () =>
|
|
2662
|
-
var useHasCopied = () =>
|
|
2663
|
-
var useContextMenu = () =>
|
|
2664
|
-
var useEditingNodeId = () =>
|
|
2665
|
-
var useSelectedNodeCount = () =>
|
|
2666
|
-
var useIsRunning = () =>
|
|
2667
|
-
var useNodeResults = () =>
|
|
2666
|
+
var useCanUndo = () => chunkDOO5ICHD_js.useWorkflowStore((state) => state.past.length > 0);
|
|
2667
|
+
var useCanRedo = () => chunkDOO5ICHD_js.useWorkflowStore((state) => state.future.length > 0);
|
|
2668
|
+
var useHasCopied = () => chunkDOO5ICHD_js.useWorkflowStore((state) => state.clipboard !== null);
|
|
2669
|
+
var useContextMenu = () => chunkDOO5ICHD_js.useWorkflowStore((state) => state.contextMenu);
|
|
2670
|
+
var useEditingNodeId = () => chunkDOO5ICHD_js.useWorkflowStore((state) => state.editingNodeId);
|
|
2671
|
+
var useSelectedNodeCount = () => chunkDOO5ICHD_js.useWorkflowStore((state) => state.nodes.filter((node) => node.selected).length);
|
|
2672
|
+
var useIsRunning = () => chunkDOO5ICHD_js.useWorkflowStore((state) => state.isRunning);
|
|
2673
|
+
var useNodeResults = () => chunkDOO5ICHD_js.useWorkflowStore((state) => state.nodeResults);
|
|
2668
2674
|
var DEFAULT_MAX_HISTORY = 50;
|
|
2669
2675
|
function useUndoRedo(nodes, edges, setNodes, setEdges, maxHistory = DEFAULT_MAX_HISTORY) {
|
|
2670
2676
|
const pastRef = react.useRef([]);
|
|
@@ -2964,10 +2970,10 @@ var AgentToolFlowNode = react.memo(function AgentToolFlowNode2({ id, data, selec
|
|
|
2964
2970
|
if (!agentTool?.name) {
|
|
2965
2971
|
const label = data.label;
|
|
2966
2972
|
return /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
2967
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2968
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2969
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2970
|
-
|
|
2973
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunkDOO5ICHD_js.NodeRunningIndicator, { nodeId: id }),
|
|
2974
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunkDOO5ICHD_js.WorkflowHandle, { type: "target", position: react$1.Position.Left, id: "left-in", colorClass: "!bg-amber-400" }),
|
|
2975
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunkDOO5ICHD_js.NodeCard, { variant: "error", nodeType: "agent_tool", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
2976
|
+
chunkDOO5ICHD_js.NodeCardHeader,
|
|
2971
2977
|
{
|
|
2972
2978
|
icon: /* @__PURE__ */ jsxRuntime.jsx(outline.ExclamationTriangleIcon, { className: "h-5 w-5 text-white" }),
|
|
2973
2979
|
title: label || "Agent Tool",
|
|
@@ -2975,16 +2981,16 @@ var AgentToolFlowNode = react.memo(function AgentToolFlowNode2({ id, data, selec
|
|
|
2975
2981
|
iconClassName: "flex h-10 w-10 items-center justify-center rounded-xl bg-gradient-to-br from-amber-400 to-orange-500 shadow-lg"
|
|
2976
2982
|
}
|
|
2977
2983
|
) }),
|
|
2978
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2984
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunkDOO5ICHD_js.WorkflowHandle, { type: "source", position: react$1.Position.Right, id: "right-out", colorClass: "!bg-amber-500" })
|
|
2979
2985
|
] });
|
|
2980
2986
|
}
|
|
2981
2987
|
const category = agentTool.category ?? "custom";
|
|
2982
2988
|
const gradient = CATEGORY_ICONS[category] ?? CATEGORY_ICONS.custom;
|
|
2983
2989
|
const pill = CATEGORY_PILL[category] ?? CATEGORY_PILL.custom;
|
|
2984
2990
|
return /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
2985
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2986
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2987
|
-
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
2991
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunkDOO5ICHD_js.NodeRunningIndicator, { nodeId: id }),
|
|
2992
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunkDOO5ICHD_js.WorkflowHandle, { type: "target", position: react$1.Position.Left, id: "left-in", colorClass: "!bg-amber-400" }),
|
|
2993
|
+
/* @__PURE__ */ jsxRuntime.jsxs(chunkDOO5ICHD_js.NodeCard, { compact: isCompact, selected, nodeType: "agent_tool", width: "w-[280px]", children: [
|
|
2988
2994
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-start justify-between", children: [
|
|
2989
2995
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-start gap-3", children: [
|
|
2990
2996
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: `flex h-10 w-10 items-center justify-center rounded-xl bg-gradient-to-br ${gradient} shadow-lg`, children: /* @__PURE__ */ jsxRuntime.jsx(outline.CommandLineIcon, { className: "h-5 w-5 text-white" }) }),
|
|
@@ -3007,10 +3013,10 @@ var AgentToolFlowNode = react.memo(function AgentToolFlowNode2({ id, data, selec
|
|
|
3007
3013
|
}
|
|
3008
3014
|
)
|
|
3009
3015
|
] }),
|
|
3010
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3011
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3012
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3013
|
-
agentTool.parameters && agentTool.parameters.length > 0 && /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3016
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunkDOO5ICHD_js.NodeCardMeta, { compact: isCompact, children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-wrap items-center gap-1.5", children: [
|
|
3017
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunkDOO5ICHD_js.NodeCardBadge, { className: "rounded-full bg-amber-100 px-2 py-0.5 text-[10px] font-semibold text-amber-700 dark:bg-amber-500/20 dark:text-amber-300", children: t("agentToolNode") }),
|
|
3018
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunkDOO5ICHD_js.NodeCardBadge, { className: `rounded-full px-2 py-0.5 text-[10px] font-medium ${pill}`, children: category }),
|
|
3019
|
+
agentTool.parameters && agentTool.parameters.length > 0 && /* @__PURE__ */ jsxRuntime.jsxs(chunkDOO5ICHD_js.NodeCardBadge, { className: "rounded-full bg-gray-100 px-2 py-0.5 text-[10px] font-medium text-gray-600 dark:bg-white/10 dark:text-gray-300", children: [
|
|
3014
3020
|
agentTool.parameters.length,
|
|
3015
3021
|
" params"
|
|
3016
3022
|
] }),
|
|
@@ -3031,237 +3037,237 @@ var AgentToolFlowNode = react.memo(function AgentToolFlowNode2({ id, data, selec
|
|
|
3031
3037
|
)
|
|
3032
3038
|
] }) })
|
|
3033
3039
|
] }),
|
|
3034
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3040
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunkDOO5ICHD_js.WorkflowHandle, { type: "source", position: react$1.Position.Right, id: "right-out", colorClass: "!bg-amber-500" })
|
|
3035
3041
|
] });
|
|
3036
3042
|
});
|
|
3037
3043
|
|
|
3038
3044
|
Object.defineProperty(exports, "topologicalSortAgents", {
|
|
3039
3045
|
enumerable: true,
|
|
3040
|
-
get: function () { return
|
|
3046
|
+
get: function () { return chunkE42PD4X6_js.topologicalSortAgents; }
|
|
3041
3047
|
});
|
|
3042
3048
|
Object.defineProperty(exports, "validateWorkflowGraph", {
|
|
3043
3049
|
enumerable: true,
|
|
3044
|
-
get: function () { return
|
|
3050
|
+
get: function () { return chunkE42PD4X6_js.validateWorkflowGraph; }
|
|
3045
3051
|
});
|
|
3046
3052
|
Object.defineProperty(exports, "AgentFlowNode", {
|
|
3047
3053
|
enumerable: true,
|
|
3048
|
-
get: function () { return
|
|
3054
|
+
get: function () { return chunkDOO5ICHD_js.AgentFlowNode; }
|
|
3049
3055
|
});
|
|
3050
3056
|
Object.defineProperty(exports, "AnswerFlowNode", {
|
|
3051
3057
|
enumerable: true,
|
|
3052
|
-
get: function () { return
|
|
3058
|
+
get: function () { return chunkDOO5ICHD_js.AnswerFlowNode; }
|
|
3053
3059
|
});
|
|
3054
3060
|
Object.defineProperty(exports, "AnthropicIcon", {
|
|
3055
3061
|
enumerable: true,
|
|
3056
|
-
get: function () { return
|
|
3062
|
+
get: function () { return chunkDOO5ICHD_js.AnthropicIcon; }
|
|
3057
3063
|
});
|
|
3058
3064
|
Object.defineProperty(exports, "CodeFlowNode", {
|
|
3059
3065
|
enumerable: true,
|
|
3060
|
-
get: function () { return
|
|
3066
|
+
get: function () { return chunkDOO5ICHD_js.CodeFlowNode; }
|
|
3061
3067
|
});
|
|
3062
3068
|
Object.defineProperty(exports, "CrewAIIcon", {
|
|
3063
3069
|
enumerable: true,
|
|
3064
|
-
get: function () { return
|
|
3070
|
+
get: function () { return chunkDOO5ICHD_js.CrewAIIcon; }
|
|
3065
3071
|
});
|
|
3066
3072
|
Object.defineProperty(exports, "DocumentExtractorFlowNode", {
|
|
3067
3073
|
enumerable: true,
|
|
3068
|
-
get: function () { return
|
|
3074
|
+
get: function () { return chunkDOO5ICHD_js.DocumentExtractorFlowNode; }
|
|
3069
3075
|
});
|
|
3070
3076
|
Object.defineProperty(exports, "EndFlowNode", {
|
|
3071
3077
|
enumerable: true,
|
|
3072
|
-
get: function () { return
|
|
3078
|
+
get: function () { return chunkDOO5ICHD_js.EndFlowNode; }
|
|
3073
3079
|
});
|
|
3074
3080
|
Object.defineProperty(exports, "EntityFlowNode", {
|
|
3075
3081
|
enumerable: true,
|
|
3076
|
-
get: function () { return
|
|
3082
|
+
get: function () { return chunkDOO5ICHD_js.EntityFlowNode; }
|
|
3077
3083
|
});
|
|
3078
3084
|
Object.defineProperty(exports, "FRAMEWORK_META", {
|
|
3079
3085
|
enumerable: true,
|
|
3080
|
-
get: function () { return
|
|
3086
|
+
get: function () { return chunkDOO5ICHD_js.FRAMEWORK_META; }
|
|
3081
3087
|
});
|
|
3082
3088
|
Object.defineProperty(exports, "GoogleADKIcon", {
|
|
3083
3089
|
enumerable: true,
|
|
3084
|
-
get: function () { return
|
|
3090
|
+
get: function () { return chunkDOO5ICHD_js.GoogleADKIcon; }
|
|
3085
3091
|
});
|
|
3086
3092
|
Object.defineProperty(exports, "GroupFlowNode", {
|
|
3087
3093
|
enumerable: true,
|
|
3088
|
-
get: function () { return
|
|
3094
|
+
get: function () { return chunkDOO5ICHD_js.GroupFlowNode; }
|
|
3089
3095
|
});
|
|
3090
3096
|
Object.defineProperty(exports, "HttpRequestFlowNode", {
|
|
3091
3097
|
enumerable: true,
|
|
3092
|
-
get: function () { return
|
|
3098
|
+
get: function () { return chunkDOO5ICHD_js.HttpRequestFlowNode; }
|
|
3093
3099
|
});
|
|
3094
3100
|
Object.defineProperty(exports, "IfElseFlowNode", {
|
|
3095
3101
|
enumerable: true,
|
|
3096
|
-
get: function () { return
|
|
3102
|
+
get: function () { return chunkDOO5ICHD_js.IfElseFlowNode; }
|
|
3097
3103
|
});
|
|
3098
3104
|
Object.defineProperty(exports, "IterationFlowNode", {
|
|
3099
3105
|
enumerable: true,
|
|
3100
|
-
get: function () { return
|
|
3106
|
+
get: function () { return chunkDOO5ICHD_js.IterationFlowNode; }
|
|
3101
3107
|
});
|
|
3102
3108
|
Object.defineProperty(exports, "IterationStartFlowNode", {
|
|
3103
3109
|
enumerable: true,
|
|
3104
|
-
get: function () { return
|
|
3110
|
+
get: function () { return chunkDOO5ICHD_js.IterationStartFlowNode; }
|
|
3105
3111
|
});
|
|
3106
3112
|
Object.defineProperty(exports, "KnowledgeBaseFlowNode", {
|
|
3107
3113
|
enumerable: true,
|
|
3108
|
-
get: function () { return
|
|
3114
|
+
get: function () { return chunkDOO5ICHD_js.KnowledgeBaseFlowNode; }
|
|
3109
3115
|
});
|
|
3110
3116
|
Object.defineProperty(exports, "LOGIC_ICON_MAP", {
|
|
3111
3117
|
enumerable: true,
|
|
3112
|
-
get: function () { return
|
|
3118
|
+
get: function () { return chunkDOO5ICHD_js.LOGIC_ICON_MAP; }
|
|
3113
3119
|
});
|
|
3114
3120
|
Object.defineProperty(exports, "LOGIC_NODE_BADGE_COLORS", {
|
|
3115
3121
|
enumerable: true,
|
|
3116
|
-
get: function () { return
|
|
3122
|
+
get: function () { return chunkDOO5ICHD_js.LOGIC_NODE_BADGE_COLORS; }
|
|
3117
3123
|
});
|
|
3118
3124
|
Object.defineProperty(exports, "LOGIC_NODE_GRADIENTS", {
|
|
3119
3125
|
enumerable: true,
|
|
3120
|
-
get: function () { return
|
|
3126
|
+
get: function () { return chunkDOO5ICHD_js.LOGIC_NODE_GRADIENTS; }
|
|
3121
3127
|
});
|
|
3122
3128
|
Object.defineProperty(exports, "LOGIC_NODE_HANDLE_COLORS", {
|
|
3123
3129
|
enumerable: true,
|
|
3124
|
-
get: function () { return
|
|
3130
|
+
get: function () { return chunkDOO5ICHD_js.LOGIC_NODE_HANDLE_COLORS; }
|
|
3125
3131
|
});
|
|
3126
3132
|
Object.defineProperty(exports, "LangChainIcon", {
|
|
3127
3133
|
enumerable: true,
|
|
3128
|
-
get: function () { return
|
|
3134
|
+
get: function () { return chunkDOO5ICHD_js.LangChainIcon; }
|
|
3129
3135
|
});
|
|
3130
3136
|
Object.defineProperty(exports, "ListOperatorFlowNode", {
|
|
3131
3137
|
enumerable: true,
|
|
3132
|
-
get: function () { return
|
|
3138
|
+
get: function () { return chunkDOO5ICHD_js.ListOperatorFlowNode; }
|
|
3133
3139
|
});
|
|
3134
3140
|
Object.defineProperty(exports, "LogicNodeDrawer", {
|
|
3135
3141
|
enumerable: true,
|
|
3136
|
-
get: function () { return
|
|
3142
|
+
get: function () { return chunkDOO5ICHD_js.LogicNodeDrawer; }
|
|
3137
3143
|
});
|
|
3138
3144
|
Object.defineProperty(exports, "MINIMAP_NODE_COLORS", {
|
|
3139
3145
|
enumerable: true,
|
|
3140
|
-
get: function () { return
|
|
3146
|
+
get: function () { return chunkDOO5ICHD_js.MINIMAP_NODE_COLORS; }
|
|
3141
3147
|
});
|
|
3142
3148
|
Object.defineProperty(exports, "NodeCard", {
|
|
3143
3149
|
enumerable: true,
|
|
3144
|
-
get: function () { return
|
|
3150
|
+
get: function () { return chunkDOO5ICHD_js.NodeCard; }
|
|
3145
3151
|
});
|
|
3146
3152
|
Object.defineProperty(exports, "NodeContextMenu", {
|
|
3147
3153
|
enumerable: true,
|
|
3148
|
-
get: function () { return
|
|
3154
|
+
get: function () { return chunkDOO5ICHD_js.NodeContextMenu; }
|
|
3149
3155
|
});
|
|
3150
3156
|
Object.defineProperty(exports, "NoteFlowNode", {
|
|
3151
3157
|
enumerable: true,
|
|
3152
|
-
get: function () { return
|
|
3158
|
+
get: function () { return chunkDOO5ICHD_js.NoteFlowNode; }
|
|
3153
3159
|
});
|
|
3154
3160
|
Object.defineProperty(exports, "OpenAIIcon", {
|
|
3155
3161
|
enumerable: true,
|
|
3156
|
-
get: function () { return
|
|
3162
|
+
get: function () { return chunkDOO5ICHD_js.OpenAIIcon; }
|
|
3157
3163
|
});
|
|
3158
3164
|
Object.defineProperty(exports, "PanelContextMenu", {
|
|
3159
3165
|
enumerable: true,
|
|
3160
|
-
get: function () { return
|
|
3166
|
+
get: function () { return chunkDOO5ICHD_js.PanelContextMenu; }
|
|
3161
3167
|
});
|
|
3162
3168
|
Object.defineProperty(exports, "ParameterExtractorFlowNode", {
|
|
3163
3169
|
enumerable: true,
|
|
3164
|
-
get: function () { return
|
|
3170
|
+
get: function () { return chunkDOO5ICHD_js.ParameterExtractorFlowNode; }
|
|
3165
3171
|
});
|
|
3166
3172
|
Object.defineProperty(exports, "QuestionClassifierFlowNode", {
|
|
3167
3173
|
enumerable: true,
|
|
3168
|
-
get: function () { return
|
|
3174
|
+
get: function () { return chunkDOO5ICHD_js.QuestionClassifierFlowNode; }
|
|
3169
3175
|
});
|
|
3170
3176
|
Object.defineProperty(exports, "RuleFlowNode", {
|
|
3171
3177
|
enumerable: true,
|
|
3172
|
-
get: function () { return
|
|
3178
|
+
get: function () { return chunkDOO5ICHD_js.RuleFlowNode; }
|
|
3173
3179
|
});
|
|
3174
3180
|
Object.defineProperty(exports, "SelectionContextMenu", {
|
|
3175
3181
|
enumerable: true,
|
|
3176
|
-
get: function () { return
|
|
3182
|
+
get: function () { return chunkDOO5ICHD_js.SelectionContextMenu; }
|
|
3177
3183
|
});
|
|
3178
3184
|
Object.defineProperty(exports, "StartFlowNode", {
|
|
3179
3185
|
enumerable: true,
|
|
3180
|
-
get: function () { return
|
|
3186
|
+
get: function () { return chunkDOO5ICHD_js.StartFlowNode; }
|
|
3181
3187
|
});
|
|
3182
3188
|
Object.defineProperty(exports, "StrandsIcon", {
|
|
3183
3189
|
enumerable: true,
|
|
3184
|
-
get: function () { return
|
|
3190
|
+
get: function () { return chunkDOO5ICHD_js.StrandsIcon; }
|
|
3185
3191
|
});
|
|
3186
3192
|
Object.defineProperty(exports, "TemplateTransformFlowNode", {
|
|
3187
3193
|
enumerable: true,
|
|
3188
|
-
get: function () { return
|
|
3194
|
+
get: function () { return chunkDOO5ICHD_js.TemplateTransformFlowNode; }
|
|
3189
3195
|
});
|
|
3190
3196
|
Object.defineProperty(exports, "ToolFlowNode", {
|
|
3191
3197
|
enumerable: true,
|
|
3192
|
-
get: function () { return
|
|
3198
|
+
get: function () { return chunkDOO5ICHD_js.ToolFlowNode; }
|
|
3193
3199
|
});
|
|
3194
3200
|
Object.defineProperty(exports, "VariableAggregatorFlowNode", {
|
|
3195
3201
|
enumerable: true,
|
|
3196
|
-
get: function () { return
|
|
3202
|
+
get: function () { return chunkDOO5ICHD_js.VariableAggregatorFlowNode; }
|
|
3197
3203
|
});
|
|
3198
3204
|
Object.defineProperty(exports, "VariableAssignerFlowNode", {
|
|
3199
3205
|
enumerable: true,
|
|
3200
|
-
get: function () { return
|
|
3206
|
+
get: function () { return chunkDOO5ICHD_js.VariableAssignerFlowNode; }
|
|
3201
3207
|
});
|
|
3202
3208
|
Object.defineProperty(exports, "WorkflowBuilderProvider", {
|
|
3203
3209
|
enumerable: true,
|
|
3204
|
-
get: function () { return
|
|
3210
|
+
get: function () { return chunkDOO5ICHD_js.WorkflowBuilderProvider; }
|
|
3205
3211
|
});
|
|
3206
3212
|
Object.defineProperty(exports, "Workspace", {
|
|
3207
3213
|
enumerable: true,
|
|
3208
|
-
get: function () { return
|
|
3214
|
+
get: function () { return chunkDOO5ICHD_js.Workspace; }
|
|
3209
3215
|
});
|
|
3210
3216
|
Object.defineProperty(exports, "WorkspaceDrawer", {
|
|
3211
3217
|
enumerable: true,
|
|
3212
|
-
get: function () { return
|
|
3218
|
+
get: function () { return chunkDOO5ICHD_js.WorkspaceDrawer; }
|
|
3213
3219
|
});
|
|
3214
3220
|
Object.defineProperty(exports, "getCompatibleModels", {
|
|
3215
3221
|
enumerable: true,
|
|
3216
|
-
get: function () { return
|
|
3222
|
+
get: function () { return chunkDOO5ICHD_js.getCompatibleModels; }
|
|
3217
3223
|
});
|
|
3218
3224
|
Object.defineProperty(exports, "getDefaultFrameworkForModel", {
|
|
3219
3225
|
enumerable: true,
|
|
3220
|
-
get: function () { return
|
|
3226
|
+
get: function () { return chunkDOO5ICHD_js.getDefaultFrameworkForModel; }
|
|
3221
3227
|
});
|
|
3222
3228
|
Object.defineProperty(exports, "getEntityBadgeColor", {
|
|
3223
3229
|
enumerable: true,
|
|
3224
|
-
get: function () { return
|
|
3230
|
+
get: function () { return chunkDOO5ICHD_js.getEntityBadgeColor; }
|
|
3225
3231
|
});
|
|
3226
3232
|
Object.defineProperty(exports, "getEntityGradient", {
|
|
3227
3233
|
enumerable: true,
|
|
3228
|
-
get: function () { return
|
|
3234
|
+
get: function () { return chunkDOO5ICHD_js.getEntityGradient; }
|
|
3229
3235
|
});
|
|
3230
3236
|
Object.defineProperty(exports, "getEntityHandleColor", {
|
|
3231
3237
|
enumerable: true,
|
|
3232
|
-
get: function () { return
|
|
3238
|
+
get: function () { return chunkDOO5ICHD_js.getEntityHandleColor; }
|
|
3233
3239
|
});
|
|
3234
3240
|
Object.defineProperty(exports, "getEntityIcon", {
|
|
3235
3241
|
enumerable: true,
|
|
3236
|
-
get: function () { return
|
|
3242
|
+
get: function () { return chunkDOO5ICHD_js.getEntityIcon; }
|
|
3237
3243
|
});
|
|
3238
3244
|
Object.defineProperty(exports, "getEntityMinimapColor", {
|
|
3239
3245
|
enumerable: true,
|
|
3240
|
-
get: function () { return
|
|
3246
|
+
get: function () { return chunkDOO5ICHD_js.getEntityMinimapColor; }
|
|
3241
3247
|
});
|
|
3242
3248
|
Object.defineProperty(exports, "getFrameworkMeta", {
|
|
3243
3249
|
enumerable: true,
|
|
3244
|
-
get: function () { return
|
|
3250
|
+
get: function () { return chunkDOO5ICHD_js.getFrameworkMeta; }
|
|
3245
3251
|
});
|
|
3246
3252
|
Object.defineProperty(exports, "isModelCompatibleWithFramework", {
|
|
3247
3253
|
enumerable: true,
|
|
3248
|
-
get: function () { return
|
|
3254
|
+
get: function () { return chunkDOO5ICHD_js.isModelCompatibleWithFramework; }
|
|
3249
3255
|
});
|
|
3250
3256
|
Object.defineProperty(exports, "useDrawerStore", {
|
|
3251
3257
|
enumerable: true,
|
|
3252
|
-
get: function () { return
|
|
3258
|
+
get: function () { return chunkDOO5ICHD_js.useDrawerStore; }
|
|
3253
3259
|
});
|
|
3254
3260
|
Object.defineProperty(exports, "useWorkflowBuilderClient", {
|
|
3255
3261
|
enumerable: true,
|
|
3256
|
-
get: function () { return
|
|
3262
|
+
get: function () { return chunkDOO5ICHD_js.useWorkflowBuilderClient; }
|
|
3257
3263
|
});
|
|
3258
3264
|
Object.defineProperty(exports, "useWorkflowBuilderClientOptional", {
|
|
3259
3265
|
enumerable: true,
|
|
3260
|
-
get: function () { return
|
|
3266
|
+
get: function () { return chunkDOO5ICHD_js.useWorkflowBuilderClientOptional; }
|
|
3261
3267
|
});
|
|
3262
3268
|
Object.defineProperty(exports, "useWorkflowStore", {
|
|
3263
3269
|
enumerable: true,
|
|
3264
|
-
get: function () { return
|
|
3270
|
+
get: function () { return chunkDOO5ICHD_js.useWorkflowStore; }
|
|
3265
3271
|
});
|
|
3266
3272
|
Object.defineProperty(exports, "GraphNodeBadge", {
|
|
3267
3273
|
enumerable: true,
|
|
@@ -3281,11 +3287,15 @@ Object.defineProperty(exports, "GraphNodeMeta", {
|
|
|
3281
3287
|
});
|
|
3282
3288
|
Object.defineProperty(exports, "applyDagreLayout", {
|
|
3283
3289
|
enumerable: true,
|
|
3284
|
-
get: function () { return
|
|
3290
|
+
get: function () { return chunkF4FMGGHO_js.applyDagreLayout; }
|
|
3285
3291
|
});
|
|
3286
3292
|
Object.defineProperty(exports, "createDefaultLogicNodeConfig", {
|
|
3287
3293
|
enumerable: true,
|
|
3288
|
-
get: function () { return
|
|
3294
|
+
get: function () { return chunkF4FMGGHO_js.createDefaultLogicNodeConfig; }
|
|
3295
|
+
});
|
|
3296
|
+
Object.defineProperty(exports, "getAgentTier", {
|
|
3297
|
+
enumerable: true,
|
|
3298
|
+
get: function () { return chunkF4FMGGHO_js.getAgentTier; }
|
|
3289
3299
|
});
|
|
3290
3300
|
exports.AgentDrawer = AgentDrawer;
|
|
3291
3301
|
exports.AgentToolFlowNode = AgentToolFlowNode;
|