@datatechsolutions/ui 2.7.118 → 2.7.120
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-JOLZ453P.js → chunk-6XPZOAE7.js} +119 -7
- package/dist/chunk-6XPZOAE7.js.map +1 -0
- package/dist/{chunk-4ESKCNPI.mjs → chunk-PAOGPMVC.mjs} +119 -3
- package/dist/chunk-PAOGPMVC.mjs.map +1 -0
- package/dist/workflow/index.d.mts +2 -2
- package/dist/workflow/index.d.ts +2 -2
- package/dist/workflow/index.js +106 -197
- package/dist/workflow/index.js.map +1 -1
- package/dist/workflow/index.mjs +4 -98
- package/dist/workflow/index.mjs.map +1 -1
- package/dist/workflow/workflow-canvas.d.mts +1 -1
- package/dist/workflow/workflow-canvas.d.ts +1 -1
- package/dist/workflow/workflow-canvas.js +2 -2
- package/dist/workflow/workflow-canvas.mjs +1 -1
- package/dist/{workflow-canvas-CBA_3y6P.d.mts → workflow-canvas-B3k03HVM.d.mts} +2 -1
- package/dist/{workflow-canvas-AmdoIvqQ.d.ts → workflow-canvas-CVkbfTQu.d.ts} +2 -1
- package/package.json +1 -1
- package/dist/chunk-4ESKCNPI.mjs.map +0 -1
- package/dist/chunk-JOLZ453P.js.map +0 -1
package/dist/workflow/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
require('../chunk-2HUN5ZXT.js');
|
|
5
5
|
var chunkE42PD4X6_js = require('../chunk-E42PD4X6.js');
|
|
6
|
-
var
|
|
6
|
+
var chunk6XPZOAE7_js = require('../chunk-6XPZOAE7.js');
|
|
7
7
|
var chunkYRY7HFKG_js = require('../chunk-YRY7HFKG.js');
|
|
8
8
|
var chunkNJ6PBGQM_js = require('../chunk-NJ6PBGQM.js');
|
|
9
9
|
var chunkF4FMGGHO_js = require('../chunk-F4FMGGHO.js');
|
|
@@ -13,7 +13,6 @@ var nextIntl = require('next-intl');
|
|
|
13
13
|
var outline = require('@heroicons/react/24/outline');
|
|
14
14
|
var jsxRuntime = require('react/jsx-runtime');
|
|
15
15
|
var zustand = require('zustand');
|
|
16
|
-
var react$1 = require('@xyflow/react');
|
|
17
16
|
|
|
18
17
|
function AnthropicModelIcon({ className }) {
|
|
19
18
|
return /* @__PURE__ */ jsxRuntime.jsx("svg", { role: "img", viewBox: "0 0 24 24", fill: "currentColor", className, "aria-label": "Anthropic", children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M17.3041 3.541h-3.6718l6.696 16.918H24Zm-10.6082 0L0 20.459h3.7442l1.3693-3.5527h7.0052l1.3693 3.5528h3.7442L10.5363 3.5409Zm-.3712 10.2232 2.2914-5.9456 2.2914 5.9456Z" }) });
|
|
@@ -83,7 +82,7 @@ function OutputCard({ label, value }) {
|
|
|
83
82
|
function AgentProfileHeader({ agent, models, t, selectedModelId, setSelectedModelId, selectedFramework, temperature, setTemperature, elo, setElo, onChanged }) {
|
|
84
83
|
const modelName = models.find((model) => model.id === selectedModelId)?.name ?? selectedModelId ?? "\u2014";
|
|
85
84
|
const avatarUrl = agent.avatar;
|
|
86
|
-
const frameworkMeta =
|
|
85
|
+
const frameworkMeta = chunk6XPZOAE7_js.getFrameworkMeta(selectedFramework);
|
|
87
86
|
const tierInfo = getEloTier(elo);
|
|
88
87
|
const difficultyConfig = {
|
|
89
88
|
beginner: { color: "bg-cyan-100 text-cyan-700 dark:bg-cyan-900/30 dark:text-cyan-400", labelKey: "agentDrawer.tierBeginner" },
|
|
@@ -368,12 +367,12 @@ function ConfigTab({ agent, models, t, selectedModelId, setSelectedModelId, sele
|
|
|
368
367
|
const isPrecise = temperature <= 0.3;
|
|
369
368
|
const isBalanced = temperature > 0.3 && temperature <= 0.7;
|
|
370
369
|
const isCreative = temperature > 0.7;
|
|
371
|
-
const frameworkKeys = Object.keys(
|
|
372
|
-
const compatibleModels =
|
|
370
|
+
const frameworkKeys = Object.keys(chunk6XPZOAE7_js.FRAMEWORK_META);
|
|
371
|
+
const compatibleModels = chunk6XPZOAE7_js.getCompatibleModels(models, selectedFramework);
|
|
373
372
|
const handleFrameworkChange = react.useCallback((newFramework) => {
|
|
374
373
|
setSelectedFramework(newFramework);
|
|
375
|
-
if (!
|
|
376
|
-
const compatible =
|
|
374
|
+
if (!chunk6XPZOAE7_js.isModelCompatibleWithFramework(selectedModelId, newFramework)) {
|
|
375
|
+
const compatible = chunk6XPZOAE7_js.getCompatibleModels(models, newFramework);
|
|
377
376
|
if (compatible.length > 0) {
|
|
378
377
|
setSelectedModelId(compatible[0].id);
|
|
379
378
|
}
|
|
@@ -384,9 +383,9 @@ function ConfigTab({ agent, models, t, selectedModelId, setSelectedModelId, sele
|
|
|
384
383
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
385
384
|
/* @__PURE__ */ jsxRuntime.jsx("label", { className: "mb-2 block text-xs font-medium text-gray-500 dark:text-gray-400", children: t("agentDrawer.framework") }),
|
|
386
385
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-wrap gap-1.5", children: frameworkKeys.map((key) => {
|
|
387
|
-
const meta =
|
|
386
|
+
const meta = chunk6XPZOAE7_js.FRAMEWORK_META[key];
|
|
388
387
|
const isSelected = key === selectedFramework;
|
|
389
|
-
const compatCount =
|
|
388
|
+
const compatCount = chunk6XPZOAE7_js.getCompatibleModels(models, key).length;
|
|
390
389
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
391
390
|
"button",
|
|
392
391
|
{
|
|
@@ -416,7 +415,7 @@ function ConfigTab({ agent, models, t, selectedModelId, setSelectedModelId, sele
|
|
|
416
415
|
] }),
|
|
417
416
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid grid-cols-2 gap-2", children: models.map((model) => {
|
|
418
417
|
const isSelected = model.id === selectedModelId;
|
|
419
|
-
const isCompatible =
|
|
418
|
+
const isCompatible = chunk6XPZOAE7_js.isModelCompatibleWithFramework(model.id, selectedFramework);
|
|
420
419
|
const { IconComponent, color, providerLabel } = getModelIcon(model.id);
|
|
421
420
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
422
421
|
"button",
|
|
@@ -520,7 +519,7 @@ function ConfigTab({ agent, models, t, selectedModelId, setSelectedModelId, sele
|
|
|
520
519
|
] });
|
|
521
520
|
}
|
|
522
521
|
function ResultsTab({ agentId, t }) {
|
|
523
|
-
const nodeResults =
|
|
522
|
+
const nodeResults = chunk6XPZOAE7_js.useWorkflowStore((state) => state.nodeResults);
|
|
524
523
|
const agentResult = react.useMemo(() => {
|
|
525
524
|
return nodeResults[agentId] ?? null;
|
|
526
525
|
}, [nodeResults, agentId]);
|
|
@@ -549,9 +548,9 @@ function ResultsTab({ agentId, t }) {
|
|
|
549
548
|
}
|
|
550
549
|
function AgentDrawer({ onSaved }) {
|
|
551
550
|
const t = nextIntl.useTranslations("agents.workflow");
|
|
552
|
-
const activeDrawer =
|
|
553
|
-
const agentData =
|
|
554
|
-
const closeDrawer =
|
|
551
|
+
const activeDrawer = chunk6XPZOAE7_js.useDrawerStore((s) => s.activeDrawer);
|
|
552
|
+
const agentData = chunk6XPZOAE7_js.useDrawerStore((s) => s.agentData);
|
|
553
|
+
const closeDrawer = chunk6XPZOAE7_js.useDrawerStore((s) => s.closeDrawer);
|
|
555
554
|
const open = activeDrawer === "agent";
|
|
556
555
|
const agent = agentData?.agent ?? null;
|
|
557
556
|
const models = agentData?.models ?? [];
|
|
@@ -594,7 +593,7 @@ function AgentDrawer({ onSaved }) {
|
|
|
594
593
|
tab
|
|
595
594
|
)) });
|
|
596
595
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
597
|
-
|
|
596
|
+
chunk6XPZOAE7_js.WorkspaceDrawer,
|
|
598
597
|
{
|
|
599
598
|
open,
|
|
600
599
|
onClose: handleClose,
|
|
@@ -742,9 +741,9 @@ function SubworkflowDrawer({ onSaved, onMaximize }) {
|
|
|
742
741
|
}, [tool, onSaved, name, category, description, timeoutMs, latestGraphRef, markSaved]);
|
|
743
742
|
if (!tool) return null;
|
|
744
743
|
const categoryKey = category ?? "external";
|
|
745
|
-
const gradient = tool.color ??
|
|
746
|
-
const categoryPill =
|
|
747
|
-
const IconComponent =
|
|
744
|
+
const gradient = tool.color ?? chunk6XPZOAE7_js.CATEGORY_COLORS[categoryKey] ?? chunk6XPZOAE7_js.CATEGORY_COLORS.external;
|
|
745
|
+
const categoryPill = chunk6XPZOAE7_js.CATEGORY_PILL_COLORS[categoryKey] ?? chunk6XPZOAE7_js.CATEGORY_PILL_COLORS.external;
|
|
746
|
+
const IconComponent = chunk6XPZOAE7_js.ICON_MAP[tool.icon ?? ""] ?? outline.ArrowPathRoundedSquareIcon;
|
|
748
747
|
const graph = latestGraphRef.current;
|
|
749
748
|
const startNode = graph.nodes.find((n) => n.type === "start");
|
|
750
749
|
const endNode = graph.nodes.find((n) => n.type === "end");
|
|
@@ -753,7 +752,7 @@ function SubworkflowDrawer({ onSaved, onMaximize }) {
|
|
|
753
752
|
const inputVariables = (startConfig?.inputVariables ?? []).map((v) => ({ name: v, type: "string" }));
|
|
754
753
|
const outputVariables = (endConfig?.outputVariables ?? []).map((v) => ({ name: v, type: "string" }));
|
|
755
754
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
756
|
-
|
|
755
|
+
chunk6XPZOAE7_js.WorkspaceDrawer,
|
|
757
756
|
{
|
|
758
757
|
open,
|
|
759
758
|
onClose: closeDrawer,
|
|
@@ -782,7 +781,7 @@ function SubworkflowDrawer({ onSaved, onMaximize }) {
|
|
|
782
781
|
{
|
|
783
782
|
type: "button",
|
|
784
783
|
onClick: () => setCategory(cat),
|
|
785
|
-
className: `rounded-full px-2 py-1 text-[9px] font-semibold transition-all ${cat === category ? `${
|
|
784
|
+
className: `rounded-full px-2 py-1 text-[9px] font-semibold transition-all ${cat === category ? `${chunk6XPZOAE7_js.CATEGORY_PILL_COLORS[cat] ?? chunk6XPZOAE7_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
785
|
children: cat
|
|
787
786
|
},
|
|
788
787
|
cat
|
|
@@ -873,7 +872,7 @@ function SubworkflowDrawer({ onSaved, onMaximize }) {
|
|
|
873
872
|
) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-center text-[10px] font-medium text-emerald-500", children: t("subworkflowDrawer.saved") }) })
|
|
874
873
|
] }),
|
|
875
874
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex-1", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
876
|
-
|
|
875
|
+
chunk6XPZOAE7_js.WorkflowCanvas,
|
|
877
876
|
{
|
|
878
877
|
initialGraph,
|
|
879
878
|
agents: [],
|
|
@@ -889,9 +888,9 @@ function SubworkflowDrawer({ onSaved, onMaximize }) {
|
|
|
889
888
|
}
|
|
890
889
|
function PipelineSettingsDrawer({ onSave }) {
|
|
891
890
|
const t = nextIntl.useTranslations("agents.workflow");
|
|
892
|
-
const activeDrawer =
|
|
893
|
-
const data =
|
|
894
|
-
const closeDrawer =
|
|
891
|
+
const activeDrawer = chunk6XPZOAE7_js.useDrawerStore((s) => s.activeDrawer);
|
|
892
|
+
const data = chunk6XPZOAE7_js.useDrawerStore((s) => s.pipelineSettingsData);
|
|
893
|
+
const closeDrawer = chunk6XPZOAE7_js.useDrawerStore((s) => s.closeDrawer);
|
|
895
894
|
const open = activeDrawer === "pipeline-settings";
|
|
896
895
|
const [nameValue, setNameValue] = react.useState("");
|
|
897
896
|
const [descriptionValue, setDescriptionValue] = react.useState("");
|
|
@@ -916,7 +915,7 @@ function PipelineSettingsDrawer({ onSave }) {
|
|
|
916
915
|
}
|
|
917
916
|
};
|
|
918
917
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
919
|
-
|
|
918
|
+
chunk6XPZOAE7_js.WorkspaceDrawer,
|
|
920
919
|
{
|
|
921
920
|
open,
|
|
922
921
|
onClose: closeDrawer,
|
|
@@ -1058,8 +1057,8 @@ function CollapsibleSection({ title, icon, colorClass, defaultOpen = true, count
|
|
|
1058
1057
|
] });
|
|
1059
1058
|
}
|
|
1060
1059
|
function LogicNodeItemCard({ item, translationFunction }) {
|
|
1061
|
-
const IconComponent =
|
|
1062
|
-
const gradient =
|
|
1060
|
+
const IconComponent = chunk6XPZOAE7_js.LOGIC_ICON_MAP[item.nodeType];
|
|
1061
|
+
const gradient = chunk6XPZOAE7_js.LOGIC_NODE_GRADIENTS[item.nodeType] ?? "from-gray-400 to-gray-500";
|
|
1063
1062
|
const defaultConfig = chunkF4FMGGHO_js.createDefaultLogicNodeConfig(item.nodeType);
|
|
1064
1063
|
const configJson = defaultConfig ? JSON.stringify(defaultConfig) : void 0;
|
|
1065
1064
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1297,8 +1296,8 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], onC
|
|
|
1297
1296
|
outputVariable: `${entity.label.replace(/\s+/g, "")}Data`,
|
|
1298
1297
|
limit: entity.defaultLimit
|
|
1299
1298
|
});
|
|
1300
|
-
const EntityIcon =
|
|
1301
|
-
const entityGradient =
|
|
1299
|
+
const EntityIcon = chunk6XPZOAE7_js.getEntityIcon(entity.id);
|
|
1300
|
+
const entityGradient = chunk6XPZOAE7_js.getEntityGradient(entity.id);
|
|
1302
1301
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1303
1302
|
"div",
|
|
1304
1303
|
{
|
|
@@ -1637,9 +1636,9 @@ function formatDuration2(durationMs) {
|
|
|
1637
1636
|
}
|
|
1638
1637
|
function RunPanel({ open, onClose, onRun, onStop }) {
|
|
1639
1638
|
const translations = nextIntl.useTranslations("agents.workflow.runPanel");
|
|
1640
|
-
const nodes =
|
|
1641
|
-
const isRunning =
|
|
1642
|
-
const nodeResults =
|
|
1639
|
+
const nodes = chunk6XPZOAE7_js.useWorkflowStore((state) => state.nodes);
|
|
1640
|
+
const isRunning = chunk6XPZOAE7_js.useWorkflowStore((state) => state.isRunning);
|
|
1641
|
+
const nodeResults = chunk6XPZOAE7_js.useWorkflowStore((state) => state.nodeResults);
|
|
1643
1642
|
const startNode = nodes.find((node) => node.type === "start");
|
|
1644
1643
|
const hasEndNode = nodes.some((node) => node.type === "end");
|
|
1645
1644
|
const hasValidStartConfig = Boolean(
|
|
@@ -1924,8 +1923,8 @@ function inferVariables(config, nodeType) {
|
|
|
1924
1923
|
}
|
|
1925
1924
|
function VariableInspector({ open, onClose }) {
|
|
1926
1925
|
const translations = nextIntl.useTranslations("agents.workflow.variableInspector");
|
|
1927
|
-
const nodes =
|
|
1928
|
-
const edges =
|
|
1926
|
+
const nodes = chunk6XPZOAE7_js.useWorkflowStore((state) => state.nodes);
|
|
1927
|
+
const edges = chunk6XPZOAE7_js.useWorkflowStore((state) => state.edges);
|
|
1929
1928
|
const [expandedNodes, setExpandedNodes] = react.useState(/* @__PURE__ */ new Set());
|
|
1930
1929
|
const toggleNodeExpansion = react.useCallback((nodeId) => {
|
|
1931
1930
|
setExpandedNodes((current) => {
|
|
@@ -1987,8 +1986,8 @@ function VariableInspector({ open, onClose }) {
|
|
|
1987
1986
|
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-2 text-sm text-gray-500 dark:text-gray-400", children: translations("noNodes") })
|
|
1988
1987
|
] }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: "divide-y divide-gray-100 dark:divide-gray-800", children: nodeVariableEntries.map((entry) => {
|
|
1989
1988
|
const isExpanded = expandedNodes.has(entry.nodeId);
|
|
1990
|
-
const IconComponent =
|
|
1991
|
-
const gradient =
|
|
1989
|
+
const IconComponent = chunk6XPZOAE7_js.LOGIC_ICON_MAP[entry.nodeType];
|
|
1990
|
+
const gradient = chunk6XPZOAE7_js.LOGIC_NODE_GRADIENTS[entry.nodeType] ?? "from-gray-400 to-gray-500";
|
|
1992
1991
|
const inputVariables = entry.variables.filter((variable) => variable.direction === "input");
|
|
1993
1992
|
const outputVariables = entry.variables.filter((variable) => variable.direction === "output");
|
|
1994
1993
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { "data-testid": `variable-node-${entry.nodeId}`, children: [
|
|
@@ -2054,7 +2053,7 @@ function RunInputDialog({
|
|
|
2054
2053
|
onRun
|
|
2055
2054
|
}) {
|
|
2056
2055
|
const t = nextIntl.useTranslations("agents.workflow.runInputDialog");
|
|
2057
|
-
const nodes =
|
|
2056
|
+
const nodes = chunk6XPZOAE7_js.useWorkflowStore((state) => state.nodes);
|
|
2058
2057
|
const [values, setValues] = react.useState({});
|
|
2059
2058
|
const inputVariableNames = react.useMemo(() => {
|
|
2060
2059
|
const storeStartNode = nodes.find((node) => node.type === "start");
|
|
@@ -2136,8 +2135,8 @@ function PreviewPanel({ open, onClose, workflowId, loadRuns }) {
|
|
|
2136
2135
|
const [isLoadingRuns, setIsLoadingRuns] = react.useState(false);
|
|
2137
2136
|
const [selectedRun, setSelectedRun] = react.useState(null);
|
|
2138
2137
|
const [selectedNode, setSelectedNode] = react.useState(null);
|
|
2139
|
-
const isRunning =
|
|
2140
|
-
const nodeResults =
|
|
2138
|
+
const isRunning = chunk6XPZOAE7_js.useWorkflowStore((state) => state.isRunning);
|
|
2139
|
+
const nodeResults = chunk6XPZOAE7_js.useWorkflowStore((state) => state.nodeResults);
|
|
2141
2140
|
const refreshRuns = react.useCallback(async () => {
|
|
2142
2141
|
setIsLoadingRuns(true);
|
|
2143
2142
|
try {
|
|
@@ -2293,7 +2292,7 @@ var AutoSaveWorkspace = react.memo(function AutoSaveWorkspace2({
|
|
|
2293
2292
|
onAutoSaveGraph(graph);
|
|
2294
2293
|
}, [onAutoSaveGraph, onGraphSnapshot]);
|
|
2295
2294
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2296
|
-
|
|
2295
|
+
chunk6XPZOAE7_js.Workspace,
|
|
2297
2296
|
{
|
|
2298
2297
|
...workspaceProps,
|
|
2299
2298
|
onGraphChange: handleGraphChange
|
|
@@ -2663,14 +2662,14 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
2663
2662
|
}
|
|
2664
2663
|
|
|
2665
2664
|
// src/workflow/store/selectors.ts
|
|
2666
|
-
var useCanUndo = () =>
|
|
2667
|
-
var useCanRedo = () =>
|
|
2668
|
-
var useHasCopied = () =>
|
|
2669
|
-
var useContextMenu = () =>
|
|
2670
|
-
var useEditingNodeId = () =>
|
|
2671
|
-
var useSelectedNodeCount = () =>
|
|
2672
|
-
var useIsRunning = () =>
|
|
2673
|
-
var useNodeResults = () =>
|
|
2665
|
+
var useCanUndo = () => chunk6XPZOAE7_js.useWorkflowStore((state) => state.past.length > 0);
|
|
2666
|
+
var useCanRedo = () => chunk6XPZOAE7_js.useWorkflowStore((state) => state.future.length > 0);
|
|
2667
|
+
var useHasCopied = () => chunk6XPZOAE7_js.useWorkflowStore((state) => state.clipboard !== null);
|
|
2668
|
+
var useContextMenu = () => chunk6XPZOAE7_js.useWorkflowStore((state) => state.contextMenu);
|
|
2669
|
+
var useEditingNodeId = () => chunk6XPZOAE7_js.useWorkflowStore((state) => state.editingNodeId);
|
|
2670
|
+
var useSelectedNodeCount = () => chunk6XPZOAE7_js.useWorkflowStore((state) => state.nodes.filter((node) => node.selected).length);
|
|
2671
|
+
var useIsRunning = () => chunk6XPZOAE7_js.useWorkflowStore((state) => state.isRunning);
|
|
2672
|
+
var useNodeResults = () => chunk6XPZOAE7_js.useWorkflowStore((state) => state.nodeResults);
|
|
2674
2673
|
var DEFAULT_MAX_HISTORY = 50;
|
|
2675
2674
|
function useUndoRedo(nodes, edges, setNodes, setEdges, maxHistory = DEFAULT_MAX_HISTORY) {
|
|
2676
2675
|
const pastRef = react.useRef([]);
|
|
@@ -2947,99 +2946,6 @@ function useHelpLines() {
|
|
|
2947
2946
|
onNodeDragStop
|
|
2948
2947
|
};
|
|
2949
2948
|
}
|
|
2950
|
-
var CATEGORY_ICONS = {
|
|
2951
|
-
search: "from-sky-400 to-blue-500",
|
|
2952
|
-
code: "from-cyan-400 to-sky-500",
|
|
2953
|
-
file: "from-violet-400 to-purple-500",
|
|
2954
|
-
web: "from-orange-400 to-amber-500",
|
|
2955
|
-
math: "from-emerald-400 to-green-500",
|
|
2956
|
-
custom: "from-amber-400 to-orange-500"
|
|
2957
|
-
};
|
|
2958
|
-
var CATEGORY_PILL = {
|
|
2959
|
-
search: "bg-sky-100 text-sky-700 dark:bg-sky-500/20 dark:text-sky-300",
|
|
2960
|
-
code: "bg-cyan-100 text-cyan-700 dark:bg-cyan-500/20 dark:text-cyan-300",
|
|
2961
|
-
file: "bg-violet-100 text-violet-700 dark:bg-violet-500/20 dark:text-violet-300",
|
|
2962
|
-
web: "bg-orange-100 text-orange-700 dark:bg-orange-500/20 dark:text-orange-300",
|
|
2963
|
-
math: "bg-emerald-100 text-emerald-700 dark:bg-emerald-500/20 dark:text-emerald-300",
|
|
2964
|
-
custom: "bg-amber-100 text-amber-700 dark:bg-amber-500/20 dark:text-amber-300"
|
|
2965
|
-
};
|
|
2966
|
-
var AgentToolFlowNode = react.memo(function AgentToolFlowNode2({ id, data, selected }) {
|
|
2967
|
-
const t = nextIntl.useTranslations("agents.workflow");
|
|
2968
|
-
const { agentTool, onRemoveFromCanvas } = data;
|
|
2969
|
-
const isCompact = data.displayMode === "compact";
|
|
2970
|
-
if (!agentTool?.name) {
|
|
2971
|
-
const label = data.label;
|
|
2972
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
2973
|
-
/* @__PURE__ */ jsxRuntime.jsx(chunkJOLZ453P_js.NodeRunningIndicator, { nodeId: id }),
|
|
2974
|
-
/* @__PURE__ */ jsxRuntime.jsx(chunkJOLZ453P_js.WorkflowHandle, { type: "target", position: react$1.Position.Left, id: "left-in", colorClass: "!bg-amber-400" }),
|
|
2975
|
-
/* @__PURE__ */ jsxRuntime.jsx(chunkJOLZ453P_js.NodeCard, { variant: "error", nodeType: "agent_tool", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
2976
|
-
chunkJOLZ453P_js.NodeCardHeader,
|
|
2977
|
-
{
|
|
2978
|
-
icon: /* @__PURE__ */ jsxRuntime.jsx(outline.ExclamationTriangleIcon, { className: "h-5 w-5 text-white" }),
|
|
2979
|
-
title: label || "Agent Tool",
|
|
2980
|
-
description: t("agentToolNotFound"),
|
|
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"
|
|
2982
|
-
}
|
|
2983
|
-
) }),
|
|
2984
|
-
/* @__PURE__ */ jsxRuntime.jsx(chunkJOLZ453P_js.WorkflowHandle, { type: "source", position: react$1.Position.Right, id: "right-out", colorClass: "!bg-amber-500" })
|
|
2985
|
-
] });
|
|
2986
|
-
}
|
|
2987
|
-
const category = agentTool.category ?? "custom";
|
|
2988
|
-
const gradient = CATEGORY_ICONS[category] ?? CATEGORY_ICONS.custom;
|
|
2989
|
-
const pill = CATEGORY_PILL[category] ?? CATEGORY_PILL.custom;
|
|
2990
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
2991
|
-
/* @__PURE__ */ jsxRuntime.jsx(chunkJOLZ453P_js.NodeRunningIndicator, { nodeId: id }),
|
|
2992
|
-
/* @__PURE__ */ jsxRuntime.jsx(chunkJOLZ453P_js.WorkflowHandle, { type: "target", position: react$1.Position.Left, id: "left-in", colorClass: "!bg-amber-400" }),
|
|
2993
|
-
/* @__PURE__ */ jsxRuntime.jsxs(chunkJOLZ453P_js.NodeCard, { compact: isCompact, selected, nodeType: "agent_tool", width: "w-[280px]", children: [
|
|
2994
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-start justify-between", children: [
|
|
2995
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-start gap-3", children: [
|
|
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" }) }),
|
|
2997
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "min-w-0 flex-1", children: [
|
|
2998
|
-
/* @__PURE__ */ jsxRuntime.jsx("h3", { className: "text-sm font-semibold text-gray-900 dark:text-white", children: agentTool.name }),
|
|
2999
|
-
!isCompact && agentTool.description && /* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-0.5 truncate text-xs text-gray-500 dark:text-gray-400", children: agentTool.description })
|
|
3000
|
-
] })
|
|
3001
|
-
] }),
|
|
3002
|
-
data.onToggle && /* @__PURE__ */ jsxRuntime.jsx(
|
|
3003
|
-
"span",
|
|
3004
|
-
{
|
|
3005
|
-
role: "switch",
|
|
3006
|
-
"aria-checked": agentTool.enabled,
|
|
3007
|
-
className: `nodrag nopan relative inline-flex h-5 w-9 flex-shrink-0 cursor-pointer items-center rounded-full border border-white/50 px-0.5 shadow-[inset_0_1px_0_rgba(255,255,255,0.5)] transition duration-200 dark:border-white/15 ${agentTool.enabled ? "bg-amber-500/90" : "bg-slate-300/80 dark:bg-slate-700/80"}`,
|
|
3008
|
-
onClick: (event) => {
|
|
3009
|
-
event.stopPropagation();
|
|
3010
|
-
data.onToggle(agentTool);
|
|
3011
|
-
},
|
|
3012
|
-
children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: `pointer-events-none inline-block h-4 w-4 transform rounded-full bg-white shadow transition duration-200 ${agentTool.enabled ? "translate-x-4" : "translate-x-0"}` })
|
|
3013
|
-
}
|
|
3014
|
-
)
|
|
3015
|
-
] }),
|
|
3016
|
-
/* @__PURE__ */ jsxRuntime.jsx(chunkJOLZ453P_js.NodeCardMeta, { compact: isCompact, children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-wrap items-center gap-1.5", children: [
|
|
3017
|
-
/* @__PURE__ */ jsxRuntime.jsx(chunkJOLZ453P_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(chunkJOLZ453P_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(chunkJOLZ453P_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: [
|
|
3020
|
-
agentTool.parameters.length,
|
|
3021
|
-
" params"
|
|
3022
|
-
] }),
|
|
3023
|
-
onRemoveFromCanvas && /* @__PURE__ */ jsxRuntime.jsx(
|
|
3024
|
-
"span",
|
|
3025
|
-
{
|
|
3026
|
-
role: "button",
|
|
3027
|
-
tabIndex: 0,
|
|
3028
|
-
onClick: (event) => {
|
|
3029
|
-
event.stopPropagation();
|
|
3030
|
-
event.preventDefault();
|
|
3031
|
-
onRemoveFromCanvas(id);
|
|
3032
|
-
},
|
|
3033
|
-
className: "nodrag nopan ml-auto cursor-pointer rounded-lg p-1 opacity-0 transition hover:bg-red-50 group-hover:opacity-100 dark:hover:bg-red-900/20",
|
|
3034
|
-
"aria-label": t("removeFromCanvas"),
|
|
3035
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(outline.TrashIcon, { className: "h-3.5 w-3.5 text-red-600 dark:text-red-400" })
|
|
3036
|
-
}
|
|
3037
|
-
)
|
|
3038
|
-
] }) })
|
|
3039
|
-
] }),
|
|
3040
|
-
/* @__PURE__ */ jsxRuntime.jsx(chunkJOLZ453P_js.WorkflowHandle, { type: "source", position: react$1.Position.Right, id: "right-out", colorClass: "!bg-amber-500" })
|
|
3041
|
-
] });
|
|
3042
|
-
});
|
|
3043
2949
|
|
|
3044
2950
|
Object.defineProperty(exports, "topologicalSortAgents", {
|
|
3045
2951
|
enumerable: true,
|
|
@@ -3051,223 +2957,227 @@ Object.defineProperty(exports, "validateWorkflowGraph", {
|
|
|
3051
2957
|
});
|
|
3052
2958
|
Object.defineProperty(exports, "AgentFlowNode", {
|
|
3053
2959
|
enumerable: true,
|
|
3054
|
-
get: function () { return
|
|
2960
|
+
get: function () { return chunk6XPZOAE7_js.AgentFlowNode; }
|
|
2961
|
+
});
|
|
2962
|
+
Object.defineProperty(exports, "AgentToolFlowNode", {
|
|
2963
|
+
enumerable: true,
|
|
2964
|
+
get: function () { return chunk6XPZOAE7_js.AgentToolFlowNode; }
|
|
3055
2965
|
});
|
|
3056
2966
|
Object.defineProperty(exports, "AnswerFlowNode", {
|
|
3057
2967
|
enumerable: true,
|
|
3058
|
-
get: function () { return
|
|
2968
|
+
get: function () { return chunk6XPZOAE7_js.AnswerFlowNode; }
|
|
3059
2969
|
});
|
|
3060
2970
|
Object.defineProperty(exports, "AnthropicIcon", {
|
|
3061
2971
|
enumerable: true,
|
|
3062
|
-
get: function () { return
|
|
2972
|
+
get: function () { return chunk6XPZOAE7_js.AnthropicIcon; }
|
|
3063
2973
|
});
|
|
3064
2974
|
Object.defineProperty(exports, "CodeFlowNode", {
|
|
3065
2975
|
enumerable: true,
|
|
3066
|
-
get: function () { return
|
|
2976
|
+
get: function () { return chunk6XPZOAE7_js.CodeFlowNode; }
|
|
3067
2977
|
});
|
|
3068
2978
|
Object.defineProperty(exports, "CrewAIIcon", {
|
|
3069
2979
|
enumerable: true,
|
|
3070
|
-
get: function () { return
|
|
2980
|
+
get: function () { return chunk6XPZOAE7_js.CrewAIIcon; }
|
|
3071
2981
|
});
|
|
3072
2982
|
Object.defineProperty(exports, "DocumentExtractorFlowNode", {
|
|
3073
2983
|
enumerable: true,
|
|
3074
|
-
get: function () { return
|
|
2984
|
+
get: function () { return chunk6XPZOAE7_js.DocumentExtractorFlowNode; }
|
|
3075
2985
|
});
|
|
3076
2986
|
Object.defineProperty(exports, "EndFlowNode", {
|
|
3077
2987
|
enumerable: true,
|
|
3078
|
-
get: function () { return
|
|
2988
|
+
get: function () { return chunk6XPZOAE7_js.EndFlowNode; }
|
|
3079
2989
|
});
|
|
3080
2990
|
Object.defineProperty(exports, "EntityFlowNode", {
|
|
3081
2991
|
enumerable: true,
|
|
3082
|
-
get: function () { return
|
|
2992
|
+
get: function () { return chunk6XPZOAE7_js.EntityFlowNode; }
|
|
3083
2993
|
});
|
|
3084
2994
|
Object.defineProperty(exports, "FRAMEWORK_META", {
|
|
3085
2995
|
enumerable: true,
|
|
3086
|
-
get: function () { return
|
|
2996
|
+
get: function () { return chunk6XPZOAE7_js.FRAMEWORK_META; }
|
|
3087
2997
|
});
|
|
3088
2998
|
Object.defineProperty(exports, "GoogleADKIcon", {
|
|
3089
2999
|
enumerable: true,
|
|
3090
|
-
get: function () { return
|
|
3000
|
+
get: function () { return chunk6XPZOAE7_js.GoogleADKIcon; }
|
|
3091
3001
|
});
|
|
3092
3002
|
Object.defineProperty(exports, "GroupFlowNode", {
|
|
3093
3003
|
enumerable: true,
|
|
3094
|
-
get: function () { return
|
|
3004
|
+
get: function () { return chunk6XPZOAE7_js.GroupFlowNode; }
|
|
3095
3005
|
});
|
|
3096
3006
|
Object.defineProperty(exports, "HttpRequestFlowNode", {
|
|
3097
3007
|
enumerable: true,
|
|
3098
|
-
get: function () { return
|
|
3008
|
+
get: function () { return chunk6XPZOAE7_js.HttpRequestFlowNode; }
|
|
3099
3009
|
});
|
|
3100
3010
|
Object.defineProperty(exports, "IfElseFlowNode", {
|
|
3101
3011
|
enumerable: true,
|
|
3102
|
-
get: function () { return
|
|
3012
|
+
get: function () { return chunk6XPZOAE7_js.IfElseFlowNode; }
|
|
3103
3013
|
});
|
|
3104
3014
|
Object.defineProperty(exports, "IterationFlowNode", {
|
|
3105
3015
|
enumerable: true,
|
|
3106
|
-
get: function () { return
|
|
3016
|
+
get: function () { return chunk6XPZOAE7_js.IterationFlowNode; }
|
|
3107
3017
|
});
|
|
3108
3018
|
Object.defineProperty(exports, "IterationStartFlowNode", {
|
|
3109
3019
|
enumerable: true,
|
|
3110
|
-
get: function () { return
|
|
3020
|
+
get: function () { return chunk6XPZOAE7_js.IterationStartFlowNode; }
|
|
3111
3021
|
});
|
|
3112
3022
|
Object.defineProperty(exports, "KnowledgeBaseFlowNode", {
|
|
3113
3023
|
enumerable: true,
|
|
3114
|
-
get: function () { return
|
|
3024
|
+
get: function () { return chunk6XPZOAE7_js.KnowledgeBaseFlowNode; }
|
|
3115
3025
|
});
|
|
3116
3026
|
Object.defineProperty(exports, "LOGIC_ICON_MAP", {
|
|
3117
3027
|
enumerable: true,
|
|
3118
|
-
get: function () { return
|
|
3028
|
+
get: function () { return chunk6XPZOAE7_js.LOGIC_ICON_MAP; }
|
|
3119
3029
|
});
|
|
3120
3030
|
Object.defineProperty(exports, "LOGIC_NODE_BADGE_COLORS", {
|
|
3121
3031
|
enumerable: true,
|
|
3122
|
-
get: function () { return
|
|
3032
|
+
get: function () { return chunk6XPZOAE7_js.LOGIC_NODE_BADGE_COLORS; }
|
|
3123
3033
|
});
|
|
3124
3034
|
Object.defineProperty(exports, "LOGIC_NODE_GRADIENTS", {
|
|
3125
3035
|
enumerable: true,
|
|
3126
|
-
get: function () { return
|
|
3036
|
+
get: function () { return chunk6XPZOAE7_js.LOGIC_NODE_GRADIENTS; }
|
|
3127
3037
|
});
|
|
3128
3038
|
Object.defineProperty(exports, "LOGIC_NODE_HANDLE_COLORS", {
|
|
3129
3039
|
enumerable: true,
|
|
3130
|
-
get: function () { return
|
|
3040
|
+
get: function () { return chunk6XPZOAE7_js.LOGIC_NODE_HANDLE_COLORS; }
|
|
3131
3041
|
});
|
|
3132
3042
|
Object.defineProperty(exports, "LangChainIcon", {
|
|
3133
3043
|
enumerable: true,
|
|
3134
|
-
get: function () { return
|
|
3044
|
+
get: function () { return chunk6XPZOAE7_js.LangChainIcon; }
|
|
3135
3045
|
});
|
|
3136
3046
|
Object.defineProperty(exports, "ListOperatorFlowNode", {
|
|
3137
3047
|
enumerable: true,
|
|
3138
|
-
get: function () { return
|
|
3048
|
+
get: function () { return chunk6XPZOAE7_js.ListOperatorFlowNode; }
|
|
3139
3049
|
});
|
|
3140
3050
|
Object.defineProperty(exports, "LogicNodeDrawer", {
|
|
3141
3051
|
enumerable: true,
|
|
3142
|
-
get: function () { return
|
|
3052
|
+
get: function () { return chunk6XPZOAE7_js.LogicNodeDrawer; }
|
|
3143
3053
|
});
|
|
3144
3054
|
Object.defineProperty(exports, "MINIMAP_NODE_COLORS", {
|
|
3145
3055
|
enumerable: true,
|
|
3146
|
-
get: function () { return
|
|
3056
|
+
get: function () { return chunk6XPZOAE7_js.MINIMAP_NODE_COLORS; }
|
|
3147
3057
|
});
|
|
3148
3058
|
Object.defineProperty(exports, "NodeCard", {
|
|
3149
3059
|
enumerable: true,
|
|
3150
|
-
get: function () { return
|
|
3060
|
+
get: function () { return chunk6XPZOAE7_js.NodeCard; }
|
|
3151
3061
|
});
|
|
3152
3062
|
Object.defineProperty(exports, "NodeContextMenu", {
|
|
3153
3063
|
enumerable: true,
|
|
3154
|
-
get: function () { return
|
|
3064
|
+
get: function () { return chunk6XPZOAE7_js.NodeContextMenu; }
|
|
3155
3065
|
});
|
|
3156
3066
|
Object.defineProperty(exports, "NoteFlowNode", {
|
|
3157
3067
|
enumerable: true,
|
|
3158
|
-
get: function () { return
|
|
3068
|
+
get: function () { return chunk6XPZOAE7_js.NoteFlowNode; }
|
|
3159
3069
|
});
|
|
3160
3070
|
Object.defineProperty(exports, "OpenAIIcon", {
|
|
3161
3071
|
enumerable: true,
|
|
3162
|
-
get: function () { return
|
|
3072
|
+
get: function () { return chunk6XPZOAE7_js.OpenAIIcon; }
|
|
3163
3073
|
});
|
|
3164
3074
|
Object.defineProperty(exports, "PanelContextMenu", {
|
|
3165
3075
|
enumerable: true,
|
|
3166
|
-
get: function () { return
|
|
3076
|
+
get: function () { return chunk6XPZOAE7_js.PanelContextMenu; }
|
|
3167
3077
|
});
|
|
3168
3078
|
Object.defineProperty(exports, "ParameterExtractorFlowNode", {
|
|
3169
3079
|
enumerable: true,
|
|
3170
|
-
get: function () { return
|
|
3080
|
+
get: function () { return chunk6XPZOAE7_js.ParameterExtractorFlowNode; }
|
|
3171
3081
|
});
|
|
3172
3082
|
Object.defineProperty(exports, "QuestionClassifierFlowNode", {
|
|
3173
3083
|
enumerable: true,
|
|
3174
|
-
get: function () { return
|
|
3084
|
+
get: function () { return chunk6XPZOAE7_js.QuestionClassifierFlowNode; }
|
|
3175
3085
|
});
|
|
3176
3086
|
Object.defineProperty(exports, "RuleFlowNode", {
|
|
3177
3087
|
enumerable: true,
|
|
3178
|
-
get: function () { return
|
|
3088
|
+
get: function () { return chunk6XPZOAE7_js.RuleFlowNode; }
|
|
3179
3089
|
});
|
|
3180
3090
|
Object.defineProperty(exports, "SelectionContextMenu", {
|
|
3181
3091
|
enumerable: true,
|
|
3182
|
-
get: function () { return
|
|
3092
|
+
get: function () { return chunk6XPZOAE7_js.SelectionContextMenu; }
|
|
3183
3093
|
});
|
|
3184
3094
|
Object.defineProperty(exports, "StartFlowNode", {
|
|
3185
3095
|
enumerable: true,
|
|
3186
|
-
get: function () { return
|
|
3096
|
+
get: function () { return chunk6XPZOAE7_js.StartFlowNode; }
|
|
3187
3097
|
});
|
|
3188
3098
|
Object.defineProperty(exports, "StrandsIcon", {
|
|
3189
3099
|
enumerable: true,
|
|
3190
|
-
get: function () { return
|
|
3100
|
+
get: function () { return chunk6XPZOAE7_js.StrandsIcon; }
|
|
3191
3101
|
});
|
|
3192
3102
|
Object.defineProperty(exports, "TemplateTransformFlowNode", {
|
|
3193
3103
|
enumerable: true,
|
|
3194
|
-
get: function () { return
|
|
3104
|
+
get: function () { return chunk6XPZOAE7_js.TemplateTransformFlowNode; }
|
|
3195
3105
|
});
|
|
3196
3106
|
Object.defineProperty(exports, "ToolFlowNode", {
|
|
3197
3107
|
enumerable: true,
|
|
3198
|
-
get: function () { return
|
|
3108
|
+
get: function () { return chunk6XPZOAE7_js.ToolFlowNode; }
|
|
3199
3109
|
});
|
|
3200
3110
|
Object.defineProperty(exports, "VariableAggregatorFlowNode", {
|
|
3201
3111
|
enumerable: true,
|
|
3202
|
-
get: function () { return
|
|
3112
|
+
get: function () { return chunk6XPZOAE7_js.VariableAggregatorFlowNode; }
|
|
3203
3113
|
});
|
|
3204
3114
|
Object.defineProperty(exports, "VariableAssignerFlowNode", {
|
|
3205
3115
|
enumerable: true,
|
|
3206
|
-
get: function () { return
|
|
3116
|
+
get: function () { return chunk6XPZOAE7_js.VariableAssignerFlowNode; }
|
|
3207
3117
|
});
|
|
3208
3118
|
Object.defineProperty(exports, "WorkflowBuilderProvider", {
|
|
3209
3119
|
enumerable: true,
|
|
3210
|
-
get: function () { return
|
|
3120
|
+
get: function () { return chunk6XPZOAE7_js.WorkflowBuilderProvider; }
|
|
3211
3121
|
});
|
|
3212
3122
|
Object.defineProperty(exports, "Workspace", {
|
|
3213
3123
|
enumerable: true,
|
|
3214
|
-
get: function () { return
|
|
3124
|
+
get: function () { return chunk6XPZOAE7_js.Workspace; }
|
|
3215
3125
|
});
|
|
3216
3126
|
Object.defineProperty(exports, "WorkspaceDrawer", {
|
|
3217
3127
|
enumerable: true,
|
|
3218
|
-
get: function () { return
|
|
3128
|
+
get: function () { return chunk6XPZOAE7_js.WorkspaceDrawer; }
|
|
3219
3129
|
});
|
|
3220
3130
|
Object.defineProperty(exports, "getCompatibleModels", {
|
|
3221
3131
|
enumerable: true,
|
|
3222
|
-
get: function () { return
|
|
3132
|
+
get: function () { return chunk6XPZOAE7_js.getCompatibleModels; }
|
|
3223
3133
|
});
|
|
3224
3134
|
Object.defineProperty(exports, "getDefaultFrameworkForModel", {
|
|
3225
3135
|
enumerable: true,
|
|
3226
|
-
get: function () { return
|
|
3136
|
+
get: function () { return chunk6XPZOAE7_js.getDefaultFrameworkForModel; }
|
|
3227
3137
|
});
|
|
3228
3138
|
Object.defineProperty(exports, "getEntityBadgeColor", {
|
|
3229
3139
|
enumerable: true,
|
|
3230
|
-
get: function () { return
|
|
3140
|
+
get: function () { return chunk6XPZOAE7_js.getEntityBadgeColor; }
|
|
3231
3141
|
});
|
|
3232
3142
|
Object.defineProperty(exports, "getEntityGradient", {
|
|
3233
3143
|
enumerable: true,
|
|
3234
|
-
get: function () { return
|
|
3144
|
+
get: function () { return chunk6XPZOAE7_js.getEntityGradient; }
|
|
3235
3145
|
});
|
|
3236
3146
|
Object.defineProperty(exports, "getEntityHandleColor", {
|
|
3237
3147
|
enumerable: true,
|
|
3238
|
-
get: function () { return
|
|
3148
|
+
get: function () { return chunk6XPZOAE7_js.getEntityHandleColor; }
|
|
3239
3149
|
});
|
|
3240
3150
|
Object.defineProperty(exports, "getEntityIcon", {
|
|
3241
3151
|
enumerable: true,
|
|
3242
|
-
get: function () { return
|
|
3152
|
+
get: function () { return chunk6XPZOAE7_js.getEntityIcon; }
|
|
3243
3153
|
});
|
|
3244
3154
|
Object.defineProperty(exports, "getEntityMinimapColor", {
|
|
3245
3155
|
enumerable: true,
|
|
3246
|
-
get: function () { return
|
|
3156
|
+
get: function () { return chunk6XPZOAE7_js.getEntityMinimapColor; }
|
|
3247
3157
|
});
|
|
3248
3158
|
Object.defineProperty(exports, "getFrameworkMeta", {
|
|
3249
3159
|
enumerable: true,
|
|
3250
|
-
get: function () { return
|
|
3160
|
+
get: function () { return chunk6XPZOAE7_js.getFrameworkMeta; }
|
|
3251
3161
|
});
|
|
3252
3162
|
Object.defineProperty(exports, "isModelCompatibleWithFramework", {
|
|
3253
3163
|
enumerable: true,
|
|
3254
|
-
get: function () { return
|
|
3164
|
+
get: function () { return chunk6XPZOAE7_js.isModelCompatibleWithFramework; }
|
|
3255
3165
|
});
|
|
3256
3166
|
Object.defineProperty(exports, "useDrawerStore", {
|
|
3257
3167
|
enumerable: true,
|
|
3258
|
-
get: function () { return
|
|
3168
|
+
get: function () { return chunk6XPZOAE7_js.useDrawerStore; }
|
|
3259
3169
|
});
|
|
3260
3170
|
Object.defineProperty(exports, "useWorkflowBuilderClient", {
|
|
3261
3171
|
enumerable: true,
|
|
3262
|
-
get: function () { return
|
|
3172
|
+
get: function () { return chunk6XPZOAE7_js.useWorkflowBuilderClient; }
|
|
3263
3173
|
});
|
|
3264
3174
|
Object.defineProperty(exports, "useWorkflowBuilderClientOptional", {
|
|
3265
3175
|
enumerable: true,
|
|
3266
|
-
get: function () { return
|
|
3176
|
+
get: function () { return chunk6XPZOAE7_js.useWorkflowBuilderClientOptional; }
|
|
3267
3177
|
});
|
|
3268
3178
|
Object.defineProperty(exports, "useWorkflowStore", {
|
|
3269
3179
|
enumerable: true,
|
|
3270
|
-
get: function () { return
|
|
3180
|
+
get: function () { return chunk6XPZOAE7_js.useWorkflowStore; }
|
|
3271
3181
|
});
|
|
3272
3182
|
Object.defineProperty(exports, "GraphNodeBadge", {
|
|
3273
3183
|
enumerable: true,
|
|
@@ -3298,7 +3208,6 @@ Object.defineProperty(exports, "getAgentTier", {
|
|
|
3298
3208
|
get: function () { return chunkF4FMGGHO_js.getAgentTier; }
|
|
3299
3209
|
});
|
|
3300
3210
|
exports.AgentDrawer = AgentDrawer;
|
|
3301
|
-
exports.AgentToolFlowNode = AgentToolFlowNode;
|
|
3302
3211
|
exports.AmazonNovaIcon = AmazonNovaIcon;
|
|
3303
3212
|
exports.AnthropicModelIcon = AnthropicModelIcon;
|
|
3304
3213
|
exports.AutoSaveWorkspace = AutoSaveWorkspace;
|