@datatechsolutions/ui 2.11.22 → 2.11.24
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/astrlabe/index.js +184 -131
- package/dist/astrlabe/index.js.map +1 -1
- package/dist/astrlabe/index.mjs +59 -6
- package/dist/astrlabe/index.mjs.map +1 -1
- package/dist/astrlabe/workflow-canvas.js +3 -3
- package/dist/astrlabe/workflow-canvas.mjs +2 -2
- package/dist/{chunk-23247RGB.mjs → chunk-5WO4JIBL.mjs} +18 -13
- package/dist/chunk-5WO4JIBL.mjs.map +1 -0
- package/dist/{chunk-CU3L2357.mjs → chunk-CCGSQQUV.mjs} +33 -20
- package/dist/chunk-CCGSQQUV.mjs.map +1 -0
- package/dist/{chunk-5WFBHIM5.js → chunk-DXY4VHMX.js} +18 -12
- package/dist/chunk-DXY4VHMX.js.map +1 -0
- package/dist/{chunk-ITFBJSHZ.js → chunk-X7Q3IBX5.js} +75 -62
- package/dist/chunk-X7Q3IBX5.js.map +1 -0
- package/dist/index.d.mts +19 -7
- package/dist/index.d.ts +19 -7
- package/dist/index.js +717 -713
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/dist/chunk-23247RGB.mjs.map +0 -1
- package/dist/chunk-5WFBHIM5.js.map +0 -1
- package/dist/chunk-CU3L2357.mjs.map +0 -1
- package/dist/chunk-ITFBJSHZ.js.map +0 -1
package/dist/astrlabe/index.js
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
|
|
4
4
|
require('../chunk-55H6WZQP.js');
|
|
5
5
|
var chunk3GE3MBUZ_js = require('../chunk-3GE3MBUZ.js');
|
|
6
|
-
var
|
|
7
|
-
var
|
|
6
|
+
var chunkX7Q3IBX5_js = require('../chunk-X7Q3IBX5.js');
|
|
7
|
+
var chunkDXY4VHMX_js = require('../chunk-DXY4VHMX.js');
|
|
8
8
|
require('../chunk-S7KHTUHA.js');
|
|
9
9
|
require('../chunk-UZ3CMNUJ.js');
|
|
10
10
|
var chunkP4YYEM4B_js = require('../chunk-P4YYEM4B.js');
|
|
@@ -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 = chunkX7Q3IBX5_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" },
|
|
@@ -359,13 +359,13 @@ function AgentCapabilityCard({ elo, setElo, models, selectedModelId, setSelected
|
|
|
359
359
|
] });
|
|
360
360
|
}
|
|
361
361
|
function ConfigTab({ models, t, selectedModelId, setSelectedModelId, selectedFramework, setSelectedFramework, markDirty, connectedProviderTypes }) {
|
|
362
|
-
const frameworkKeys = Object.keys(
|
|
362
|
+
const frameworkKeys = Object.keys(chunkX7Q3IBX5_js.FRAMEWORK_META);
|
|
363
363
|
const hasProviderConstraints = connectedProviderTypes.length > 0;
|
|
364
|
-
const compatibleModels =
|
|
364
|
+
const compatibleModels = chunkX7Q3IBX5_js.getCompatibleModels(models, selectedFramework);
|
|
365
365
|
const handleFrameworkChange = react.useCallback((newFramework) => {
|
|
366
366
|
setSelectedFramework(newFramework);
|
|
367
|
-
if (!
|
|
368
|
-
const compatible =
|
|
367
|
+
if (!chunkX7Q3IBX5_js.isModelCompatibleWithFramework(selectedModelId, newFramework)) {
|
|
368
|
+
const compatible = chunkX7Q3IBX5_js.getCompatibleModels(models, newFramework);
|
|
369
369
|
if (compatible.length > 0) {
|
|
370
370
|
setSelectedModelId(compatible[0].id);
|
|
371
371
|
}
|
|
@@ -376,10 +376,10 @@ function ConfigTab({ models, t, selectedModelId, setSelectedModelId, selectedFra
|
|
|
376
376
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
377
377
|
/* @__PURE__ */ jsxRuntime.jsx("label", { className: "mb-2 block text-xs font-medium text-gray-500 dark:text-gray-400", children: t("agentDrawer.framework") }),
|
|
378
378
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-wrap gap-1.5", children: frameworkKeys.map((key) => {
|
|
379
|
-
const meta =
|
|
379
|
+
const meta = chunkX7Q3IBX5_js.FRAMEWORK_META[key];
|
|
380
380
|
const isSelected = key === selectedFramework;
|
|
381
|
-
const compatCount =
|
|
382
|
-
const isCompatibleWithProviders = !hasProviderConstraints ||
|
|
381
|
+
const compatCount = chunkX7Q3IBX5_js.getCompatibleModels(models, key).length;
|
|
382
|
+
const isCompatibleWithProviders = !hasProviderConstraints || chunkX7Q3IBX5_js.isFrameworkCompatibleWithProviders(key, connectedProviderTypes);
|
|
383
383
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
384
384
|
"button",
|
|
385
385
|
{
|
|
@@ -411,7 +411,7 @@ function ConfigTab({ models, t, selectedModelId, setSelectedModelId, selectedFra
|
|
|
411
411
|
] }),
|
|
412
412
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid grid-cols-2 gap-2", children: models.map((model) => {
|
|
413
413
|
const isSelected = model.id === selectedModelId;
|
|
414
|
-
const isCompatible =
|
|
414
|
+
const isCompatible = chunkX7Q3IBX5_js.isModelCompatibleWithFramework(model.id, selectedFramework);
|
|
415
415
|
const { IconComponent, color, providerLabel } = getModelIcon(model.id);
|
|
416
416
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
417
417
|
"button",
|
|
@@ -510,7 +510,7 @@ function PromptTab({ agent, temperature, setTemperature, markDirty, t }) {
|
|
|
510
510
|
] });
|
|
511
511
|
}
|
|
512
512
|
function ResultsTab({ agentId, t }) {
|
|
513
|
-
const nodeResults =
|
|
513
|
+
const nodeResults = chunkX7Q3IBX5_js.useWorkflowStore((state) => state.nodeResults);
|
|
514
514
|
const agentResult = react.useMemo(() => {
|
|
515
515
|
return nodeResults[agentId] ?? null;
|
|
516
516
|
}, [nodeResults, agentId]);
|
|
@@ -600,10 +600,10 @@ function ModelsTab({ modelProviders, selectedProviderId, onSelectProvider, model
|
|
|
600
600
|
const providerModels = modelsByProvider.find((p) => p.provider.id === selectedProviderId);
|
|
601
601
|
if (!providerModels || providerModels.models.length === 0) return /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-xs text-gray-400 dark:text-gray-500", children: t("agentDrawer.noModelsForProvider") });
|
|
602
602
|
const compatibleModels = providerModels.models.filter(
|
|
603
|
-
(m) =>
|
|
603
|
+
(m) => chunkX7Q3IBX5_js.isModelCompatibleWithFramework(m.id, agentFramework)
|
|
604
604
|
);
|
|
605
605
|
const incompatibleModels = providerModels.models.filter(
|
|
606
|
-
(m) => !
|
|
606
|
+
(m) => !chunkX7Q3IBX5_js.isModelCompatibleWithFramework(m.id, agentFramework)
|
|
607
607
|
);
|
|
608
608
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
609
609
|
/* @__PURE__ */ jsxRuntime.jsx("label", { className: "mb-2 block text-xs font-medium text-gray-500 dark:text-gray-400", children: t("agentDrawer.selectModel") }),
|
|
@@ -676,7 +676,7 @@ function ToolsTab({ agentTools, enabledToolIds, onToggle, agentFramework, t }) {
|
|
|
676
676
|
] }),
|
|
677
677
|
tool.description && /* @__PURE__ */ jsxRuntime.jsx("p", { className: "truncate text-[10px] text-gray-400 dark:text-gray-500", children: tool.description }),
|
|
678
678
|
tool.compatibleFrameworks && tool.compatibleFrameworks.length > 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "mt-1 flex flex-wrap gap-0.5", children: tool.compatibleFrameworks.map((framework) => {
|
|
679
|
-
const meta =
|
|
679
|
+
const meta = chunkX7Q3IBX5_js.getFrameworkMeta(framework);
|
|
680
680
|
const isCurrentFw = framework === agentFramework;
|
|
681
681
|
return /* @__PURE__ */ jsxRuntime.jsxs("span", { className: `inline-flex items-center gap-0.5 rounded px-1.5 py-0.5 text-[8px] font-medium ${isCurrentFw ? meta.badgeColor : "bg-gray-100 text-gray-500 dark:bg-white/5 dark:text-gray-400"}`, children: [
|
|
682
682
|
/* @__PURE__ */ jsxRuntime.jsx(meta.IconComponent, { className: "h-2.5 w-2.5" }),
|
|
@@ -684,7 +684,26 @@ function ToolsTab({ agentTools, enabledToolIds, onToggle, agentFramework, t }) {
|
|
|
684
684
|
] }, framework);
|
|
685
685
|
}) })
|
|
686
686
|
] }),
|
|
687
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: `flex h-5 w-5 shrink-0 items-center justify-center rounded-full transition-all ${isEnabled ? "bg-amber-500 text-white" : "border border-gray-300 dark:border-gray-600"}`, children: isEnabled && /* @__PURE__ */ jsxRuntime.jsx(outline.CheckIcon, { className: "h-3 w-3" }) })
|
|
687
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: `flex h-5 w-5 shrink-0 items-center justify-center rounded-full transition-all ${isEnabled ? "bg-amber-500 text-white" : "border border-gray-300 dark:border-gray-600"}`, children: isEnabled && /* @__PURE__ */ jsxRuntime.jsx(outline.CheckIcon, { className: "h-3 w-3" }) }),
|
|
688
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
689
|
+
"div",
|
|
690
|
+
{
|
|
691
|
+
className: "shrink-0",
|
|
692
|
+
onClick: (event) => {
|
|
693
|
+
event.stopPropagation();
|
|
694
|
+
},
|
|
695
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
696
|
+
chunkDXY4VHMX_js.ToggleSwitch,
|
|
697
|
+
{
|
|
698
|
+
checked: isEnabled,
|
|
699
|
+
onChange: () => onToggle(tool.agentToolId),
|
|
700
|
+
disabled: !isCompatible,
|
|
701
|
+
size: "sm",
|
|
702
|
+
label: `${tool.name} enabled`
|
|
703
|
+
}
|
|
704
|
+
)
|
|
705
|
+
}
|
|
706
|
+
)
|
|
688
707
|
]
|
|
689
708
|
},
|
|
690
709
|
tool.agentToolId
|
|
@@ -694,9 +713,9 @@ function ToolsTab({ agentTools, enabledToolIds, onToggle, agentFramework, t }) {
|
|
|
694
713
|
}
|
|
695
714
|
function AgentModal({ onSaved }) {
|
|
696
715
|
const t = chunkYXN2K77G_js.useTranslations("agents.workflow");
|
|
697
|
-
const activeModal =
|
|
698
|
-
const agentData =
|
|
699
|
-
const closeModal =
|
|
716
|
+
const activeModal = chunkX7Q3IBX5_js.useModalStore((s) => s.activeModal);
|
|
717
|
+
const agentData = chunkX7Q3IBX5_js.useModalStore((s) => s.agentData);
|
|
718
|
+
const closeModal = chunkX7Q3IBX5_js.useModalStore((s) => s.closeModal);
|
|
700
719
|
const open = activeModal === "agent";
|
|
701
720
|
const agent = agentData?.agent ?? null;
|
|
702
721
|
const models = agentData?.models ?? [];
|
|
@@ -771,7 +790,7 @@ function AgentModal({ onSaved }) {
|
|
|
771
790
|
)
|
|
772
791
|
] });
|
|
773
792
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
774
|
-
|
|
793
|
+
chunkDXY4VHMX_js.SettingsDialog,
|
|
775
794
|
{
|
|
776
795
|
open,
|
|
777
796
|
onClose: handleClose,
|
|
@@ -921,7 +940,7 @@ function SubworkflowModal({ onSaved, onMaximize }) {
|
|
|
921
940
|
const markDirty = useSubworkflowStore((s) => s.markDirty);
|
|
922
941
|
const markSaved = useSubworkflowStore((s) => s.markSaved);
|
|
923
942
|
const closeModal = useSubworkflowStore((s) => s.closeModal);
|
|
924
|
-
const agentBehind =
|
|
943
|
+
const agentBehind = chunkX7Q3IBX5_js.useModalStore((s) => s.activeModal === "agent" ? s.agentData?.agent?.name : null);
|
|
925
944
|
const isCreateMode = !tool?.toolId;
|
|
926
945
|
const initialGraph = react.useMemo(() => {
|
|
927
946
|
const config = tool?.config;
|
|
@@ -950,9 +969,9 @@ function SubworkflowModal({ onSaved, onMaximize }) {
|
|
|
950
969
|
}, [tool, onSaved, name, category, description, timeoutMs, latestGraphRef, markSaved]);
|
|
951
970
|
if (!tool) return null;
|
|
952
971
|
const categoryKey = category ?? "external";
|
|
953
|
-
const gradient = tool.color ??
|
|
954
|
-
const categoryPill =
|
|
955
|
-
const IconComponent =
|
|
972
|
+
const gradient = tool.color ?? chunkX7Q3IBX5_js.CATEGORY_COLORS[categoryKey] ?? chunkX7Q3IBX5_js.CATEGORY_COLORS.external;
|
|
973
|
+
const categoryPill = chunkX7Q3IBX5_js.CATEGORY_PILL_COLORS[categoryKey] ?? chunkX7Q3IBX5_js.CATEGORY_PILL_COLORS.external;
|
|
974
|
+
const IconComponent = chunkX7Q3IBX5_js.ICON_MAP[tool.icon ?? ""] ?? outline.ArrowPathRoundedSquareIcon;
|
|
956
975
|
const graph = latestGraphRef.current;
|
|
957
976
|
const startNode = graph.nodes.find((n) => n.type === "start");
|
|
958
977
|
const endNode = graph.nodes.find((n) => n.type === "end");
|
|
@@ -985,7 +1004,7 @@ function SubworkflowModal({ onSaved, onMaximize }) {
|
|
|
985
1004
|
] })
|
|
986
1005
|
] });
|
|
987
1006
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
988
|
-
|
|
1007
|
+
chunkDXY4VHMX_js.GlassModalShell,
|
|
989
1008
|
{
|
|
990
1009
|
open,
|
|
991
1010
|
onClose: closeModal,
|
|
@@ -1017,7 +1036,7 @@ function SubworkflowModal({ onSaved, onMaximize }) {
|
|
|
1017
1036
|
{
|
|
1018
1037
|
type: "button",
|
|
1019
1038
|
onClick: () => setCategory(cat),
|
|
1020
|
-
className: `rounded-full px-2 py-1 text-[9px] font-semibold transition-all ${cat === category ? `${
|
|
1039
|
+
className: `rounded-full px-2 py-1 text-[9px] font-semibold transition-all ${cat === category ? `${chunkX7Q3IBX5_js.CATEGORY_PILL_COLORS[cat] ?? chunkX7Q3IBX5_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"}`,
|
|
1021
1040
|
children: cat
|
|
1022
1041
|
},
|
|
1023
1042
|
cat
|
|
@@ -1104,7 +1123,7 @@ function SubworkflowModal({ onSaved, onMaximize }) {
|
|
|
1104
1123
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "mt-auto" })
|
|
1105
1124
|
] }),
|
|
1106
1125
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex-1", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1107
|
-
|
|
1126
|
+
chunkX7Q3IBX5_js.WorkflowCanvas,
|
|
1108
1127
|
{
|
|
1109
1128
|
initialGraph,
|
|
1110
1129
|
agents: [],
|
|
@@ -1141,7 +1160,7 @@ function WorkspaceModal({
|
|
|
1141
1160
|
}) {
|
|
1142
1161
|
const resolvedSize = LEGACY_WIDTH_MAP[maxWidth] ?? maxWidth;
|
|
1143
1162
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1144
|
-
|
|
1163
|
+
chunkDXY4VHMX_js.GlassModalShell,
|
|
1145
1164
|
{
|
|
1146
1165
|
open,
|
|
1147
1166
|
onClose,
|
|
@@ -1162,9 +1181,9 @@ function WorkspaceModal({
|
|
|
1162
1181
|
}
|
|
1163
1182
|
function PipelineSettingsModal({ onSave }) {
|
|
1164
1183
|
const t = chunkYXN2K77G_js.useTranslations("agents.workflow");
|
|
1165
|
-
const activeModal =
|
|
1166
|
-
const data =
|
|
1167
|
-
const closeModal =
|
|
1184
|
+
const activeModal = chunkX7Q3IBX5_js.useModalStore((s) => s.activeModal);
|
|
1185
|
+
const data = chunkX7Q3IBX5_js.useModalStore((s) => s.pipelineSettingsData);
|
|
1186
|
+
const closeModal = chunkX7Q3IBX5_js.useModalStore((s) => s.closeModal);
|
|
1168
1187
|
const open = activeModal === "pipeline-settings";
|
|
1169
1188
|
const [nameValue, setNameValue] = react.useState("");
|
|
1170
1189
|
const [descriptionValue, setDescriptionValue] = react.useState("");
|
|
@@ -1199,7 +1218,7 @@ function PipelineSettingsModal({ onSave }) {
|
|
|
1199
1218
|
}
|
|
1200
1219
|
),
|
|
1201
1220
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
1202
|
-
|
|
1221
|
+
chunkDXY4VHMX_js.Button,
|
|
1203
1222
|
{
|
|
1204
1223
|
type: "submit",
|
|
1205
1224
|
form: "pipeline-settings-form",
|
|
@@ -1214,7 +1233,7 @@ function PipelineSettingsModal({ onSave }) {
|
|
|
1214
1233
|
)
|
|
1215
1234
|
] });
|
|
1216
1235
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
1217
|
-
|
|
1236
|
+
chunkDXY4VHMX_js.GlassModalShell,
|
|
1218
1237
|
{
|
|
1219
1238
|
open,
|
|
1220
1239
|
onClose: closeModal,
|
|
@@ -1228,7 +1247,7 @@ function PipelineSettingsModal({ onSave }) {
|
|
|
1228
1247
|
onSubmit: handleSubmit,
|
|
1229
1248
|
children: /* @__PURE__ */ jsxRuntime.jsxs("form", { id: "pipeline-settings-form", onSubmit: handleSubmit, className: "space-y-6", children: [
|
|
1230
1249
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1231
|
-
|
|
1250
|
+
chunkDXY4VHMX_js.FormInput,
|
|
1232
1251
|
{
|
|
1233
1252
|
label: t("pipelineName"),
|
|
1234
1253
|
value: nameValue,
|
|
@@ -1238,7 +1257,7 @@ function PipelineSettingsModal({ onSave }) {
|
|
|
1238
1257
|
}
|
|
1239
1258
|
),
|
|
1240
1259
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1241
|
-
|
|
1260
|
+
chunkDXY4VHMX_js.FormTextarea,
|
|
1242
1261
|
{
|
|
1243
1262
|
label: t("pipelineDescription"),
|
|
1244
1263
|
value: descriptionValue,
|
|
@@ -1373,8 +1392,8 @@ function CollapsibleSection({ title, icon, colorClass, defaultOpen = true, count
|
|
|
1373
1392
|
] });
|
|
1374
1393
|
}
|
|
1375
1394
|
function LogicNodeItemCard({ item, translationFunction }) {
|
|
1376
|
-
const IconComponent =
|
|
1377
|
-
const gradient =
|
|
1395
|
+
const IconComponent = chunkX7Q3IBX5_js.LOGIC_ICON_MAP[item.nodeType];
|
|
1396
|
+
const gradient = chunkX7Q3IBX5_js.LOGIC_NODE_GRADIENTS[item.nodeType] ?? "from-gray-400 to-gray-500";
|
|
1378
1397
|
const defaultConfig = chunkPWBWP5FJ_js.createDefaultLogicNodeConfig(item.nodeType);
|
|
1379
1398
|
const configJson = defaultConfig ? JSON.stringify(defaultConfig) : void 0;
|
|
1380
1399
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1539,7 +1558,17 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], mod
|
|
|
1539
1558
|
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "truncate text-xs font-medium text-gray-900 dark:text-white", children: tool.name }),
|
|
1540
1559
|
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "truncate text-[10px] text-gray-400 dark:text-gray-500", children: tool.category })
|
|
1541
1560
|
] }),
|
|
1542
|
-
|
|
1561
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1562
|
+
chunkDXY4VHMX_js.ToggleSwitch,
|
|
1563
|
+
{
|
|
1564
|
+
checked: Boolean(tool.enabled),
|
|
1565
|
+
onChange: () => {
|
|
1566
|
+
},
|
|
1567
|
+
disabled: true,
|
|
1568
|
+
size: "sm",
|
|
1569
|
+
label: `${tool.name} enabled`
|
|
1570
|
+
}
|
|
1571
|
+
)
|
|
1543
1572
|
]
|
|
1544
1573
|
},
|
|
1545
1574
|
tool.toolId
|
|
@@ -1569,7 +1598,17 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], mod
|
|
|
1569
1598
|
String(rule.priority ?? "")
|
|
1570
1599
|
] })
|
|
1571
1600
|
] }),
|
|
1572
|
-
|
|
1601
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1602
|
+
chunkDXY4VHMX_js.ToggleSwitch,
|
|
1603
|
+
{
|
|
1604
|
+
checked: Boolean(rule.enabled),
|
|
1605
|
+
onChange: () => {
|
|
1606
|
+
},
|
|
1607
|
+
disabled: true,
|
|
1608
|
+
size: "sm",
|
|
1609
|
+
label: `${rule.name} enabled`
|
|
1610
|
+
}
|
|
1611
|
+
)
|
|
1573
1612
|
]
|
|
1574
1613
|
},
|
|
1575
1614
|
rule.ruleId
|
|
@@ -1595,8 +1634,8 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], mod
|
|
|
1595
1634
|
limit: entity.defaultLimit
|
|
1596
1635
|
});
|
|
1597
1636
|
const dsLogo = getDatasourceLogo(entity.id);
|
|
1598
|
-
const EntityIcon =
|
|
1599
|
-
const entityGradient =
|
|
1637
|
+
const EntityIcon = chunkX7Q3IBX5_js.getEntityIcon(entity.id);
|
|
1638
|
+
const entityGradient = chunkX7Q3IBX5_js.getEntityGradient(entity.id);
|
|
1600
1639
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1601
1640
|
"div",
|
|
1602
1641
|
{
|
|
@@ -1612,6 +1651,20 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], mod
|
|
|
1612
1651
|
" ",
|
|
1613
1652
|
t("entityFieldsLabel")
|
|
1614
1653
|
] })
|
|
1654
|
+
] }),
|
|
1655
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
|
|
1656
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "rounded-full bg-slate-100 px-1.5 py-0.5 text-[9px] font-medium text-slate-600 dark:bg-white/10 dark:text-slate-300", children: "Read only" }),
|
|
1657
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1658
|
+
chunkDXY4VHMX_js.ToggleSwitch,
|
|
1659
|
+
{
|
|
1660
|
+
checked: true,
|
|
1661
|
+
onChange: () => {
|
|
1662
|
+
},
|
|
1663
|
+
disabled: true,
|
|
1664
|
+
size: "sm",
|
|
1665
|
+
label: `${entity.label} read only`
|
|
1666
|
+
}
|
|
1667
|
+
)
|
|
1615
1668
|
] })
|
|
1616
1669
|
]
|
|
1617
1670
|
},
|
|
@@ -1978,9 +2031,9 @@ function formatDuration2(durationMs) {
|
|
|
1978
2031
|
}
|
|
1979
2032
|
function RunPanel({ open, onClose, onRun, onStop }) {
|
|
1980
2033
|
const translations = chunkYXN2K77G_js.useTranslations("agents.workflow.runPanel");
|
|
1981
|
-
const nodes =
|
|
1982
|
-
const isRunning =
|
|
1983
|
-
const nodeResults =
|
|
2034
|
+
const nodes = chunkX7Q3IBX5_js.useWorkflowStore((state) => state.nodes);
|
|
2035
|
+
const isRunning = chunkX7Q3IBX5_js.useWorkflowStore((state) => state.isRunning);
|
|
2036
|
+
const nodeResults = chunkX7Q3IBX5_js.useWorkflowStore((state) => state.nodeResults);
|
|
1984
2037
|
const startNode = nodes.find((node) => node.type === "start");
|
|
1985
2038
|
const hasEndNode = nodes.some((node) => node.type === "end");
|
|
1986
2039
|
const hasValidStartConfig = Boolean(
|
|
@@ -2265,8 +2318,8 @@ function inferVariables(config, nodeType) {
|
|
|
2265
2318
|
}
|
|
2266
2319
|
function VariableInspector({ open, onClose }) {
|
|
2267
2320
|
const translations = chunkYXN2K77G_js.useTranslations("agents.workflow.variableInspector");
|
|
2268
|
-
const nodes =
|
|
2269
|
-
const edges =
|
|
2321
|
+
const nodes = chunkX7Q3IBX5_js.useWorkflowStore((state) => state.nodes);
|
|
2322
|
+
const edges = chunkX7Q3IBX5_js.useWorkflowStore((state) => state.edges);
|
|
2270
2323
|
const [expandedNodes, setExpandedNodes] = react.useState(/* @__PURE__ */ new Set());
|
|
2271
2324
|
const toggleNodeExpansion = react.useCallback((nodeId) => {
|
|
2272
2325
|
setExpandedNodes((current) => {
|
|
@@ -2328,8 +2381,8 @@ function VariableInspector({ open, onClose }) {
|
|
|
2328
2381
|
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-2 text-sm text-gray-500 dark:text-gray-400", children: translations("noNodes") })
|
|
2329
2382
|
] }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: "divide-y divide-gray-100 dark:divide-gray-800", children: nodeVariableEntries.map((entry) => {
|
|
2330
2383
|
const isExpanded = expandedNodes.has(entry.nodeId);
|
|
2331
|
-
const IconComponent =
|
|
2332
|
-
const gradient =
|
|
2384
|
+
const IconComponent = chunkX7Q3IBX5_js.LOGIC_ICON_MAP[entry.nodeType];
|
|
2385
|
+
const gradient = chunkX7Q3IBX5_js.LOGIC_NODE_GRADIENTS[entry.nodeType] ?? "from-gray-400 to-gray-500";
|
|
2333
2386
|
const inputVariables = entry.variables.filter((variable) => variable.direction === "input");
|
|
2334
2387
|
const outputVariables = entry.variables.filter((variable) => variable.direction === "output");
|
|
2335
2388
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { "data-testid": `variable-node-${entry.nodeId}`, children: [
|
|
@@ -2395,7 +2448,7 @@ function RunInputDialog({
|
|
|
2395
2448
|
onRun
|
|
2396
2449
|
}) {
|
|
2397
2450
|
const t = chunkYXN2K77G_js.useTranslations("agents.workflow.runInputDialog");
|
|
2398
|
-
const nodes =
|
|
2451
|
+
const nodes = chunkX7Q3IBX5_js.useWorkflowStore((state) => state.nodes);
|
|
2399
2452
|
const [values, setValues] = react.useState({});
|
|
2400
2453
|
const inputVariableNames = react.useMemo(() => {
|
|
2401
2454
|
const storeStartNode = nodes.find((node) => node.type === "start");
|
|
@@ -2422,7 +2475,7 @@ function RunInputDialog({
|
|
|
2422
2475
|
}, [onClose]);
|
|
2423
2476
|
if (!open) return null;
|
|
2424
2477
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2425
|
-
|
|
2478
|
+
chunkDXY4VHMX_js.GlassFormModal,
|
|
2426
2479
|
{
|
|
2427
2480
|
open,
|
|
2428
2481
|
onClose: handleClose,
|
|
@@ -2434,7 +2487,7 @@ function RunInputDialog({
|
|
|
2434
2487
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "space-y-3", children: inputVariableNames.length === 0 ? /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-center text-sm text-gray-500 dark:text-gray-400", children: t("noInputs") }) : inputVariableNames.map((variableName) => /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
|
|
2435
2488
|
/* @__PURE__ */ jsxRuntime.jsx("label", { className: "mb-1 block text-xs font-medium text-gray-700 dark:text-gray-300", children: variableName }),
|
|
2436
2489
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2437
|
-
|
|
2490
|
+
chunkDXY4VHMX_js.Input,
|
|
2438
2491
|
{
|
|
2439
2492
|
value: values[variableName] ?? "",
|
|
2440
2493
|
onChange: (event) => handleValueChange(variableName, event.target.value),
|
|
@@ -2443,8 +2496,8 @@ function RunInputDialog({
|
|
|
2443
2496
|
)
|
|
2444
2497
|
] }, variableName)) }),
|
|
2445
2498
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mt-4 flex items-center justify-end gap-2", children: [
|
|
2446
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2447
|
-
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
2499
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunkDXY4VHMX_js.Button, { size: "sm", plain: true, onClick: handleClose, children: t("cancel") }),
|
|
2500
|
+
/* @__PURE__ */ jsxRuntime.jsxs(chunkDXY4VHMX_js.Button, { size: "sm", gradient: true, onClick: handleSubmit, children: [
|
|
2448
2501
|
/* @__PURE__ */ jsxRuntime.jsx(outline.PlayIcon, { className: "h-3.5 w-3.5", "data-slot": "icon" }),
|
|
2449
2502
|
t("run")
|
|
2450
2503
|
] })
|
|
@@ -2477,8 +2530,8 @@ function PreviewPanel({ open, onClose, workflowId, loadRuns }) {
|
|
|
2477
2530
|
const [isLoadingRuns, setIsLoadingRuns] = react.useState(false);
|
|
2478
2531
|
const [selectedRun, setSelectedRun] = react.useState(null);
|
|
2479
2532
|
const [selectedNode, setSelectedNode] = react.useState(null);
|
|
2480
|
-
const isRunning =
|
|
2481
|
-
const nodeResults =
|
|
2533
|
+
const isRunning = chunkX7Q3IBX5_js.useWorkflowStore((state) => state.isRunning);
|
|
2534
|
+
const nodeResults = chunkX7Q3IBX5_js.useWorkflowStore((state) => state.nodeResults);
|
|
2482
2535
|
const refreshRuns = react.useCallback(async () => {
|
|
2483
2536
|
setIsLoadingRuns(true);
|
|
2484
2537
|
try {
|
|
@@ -2634,7 +2687,7 @@ var AutoSaveWorkspace = react.memo(function AutoSaveWorkspace2({
|
|
|
2634
2687
|
onAutoSaveGraph(graph);
|
|
2635
2688
|
}, [onAutoSaveGraph, onGraphSnapshot]);
|
|
2636
2689
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2637
|
-
|
|
2690
|
+
chunkX7Q3IBX5_js.Workspace,
|
|
2638
2691
|
{
|
|
2639
2692
|
...workspaceProps,
|
|
2640
2693
|
onGraphChange: handleGraphChange
|
|
@@ -2642,7 +2695,7 @@ var AutoSaveWorkspace = react.memo(function AutoSaveWorkspace2({
|
|
|
2642
2695
|
);
|
|
2643
2696
|
});
|
|
2644
2697
|
function DynamicIslandConfirm2(props) {
|
|
2645
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2698
|
+
return /* @__PURE__ */ jsxRuntime.jsx(chunkDXY4VHMX_js.DynamicIslandConfirm, { ...props });
|
|
2646
2699
|
}
|
|
2647
2700
|
var JSON_PREVIEW_LINE_LIMIT = 50;
|
|
2648
2701
|
function DslExportModal({ open, onClose, workflow, graph }) {
|
|
@@ -2696,7 +2749,7 @@ function DslExportModal({ open, onClose, workflow, graph }) {
|
|
|
2696
2749
|
}, [jsonString, workflow.name, workflow.version]);
|
|
2697
2750
|
if (!open) return null;
|
|
2698
2751
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2699
|
-
|
|
2752
|
+
chunkDXY4VHMX_js.GlassFormModal,
|
|
2700
2753
|
{
|
|
2701
2754
|
open,
|
|
2702
2755
|
onClose,
|
|
@@ -2739,7 +2792,7 @@ function DslExportModal({ open, onClose, workflow, graph }) {
|
|
|
2739
2792
|
] }),
|
|
2740
2793
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center justify-end gap-3 border-t border-gray-200 px-1 py-4 dark:border-gray-700", children: [
|
|
2741
2794
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2742
|
-
|
|
2795
|
+
chunkDXY4VHMX_js.Button,
|
|
2743
2796
|
{
|
|
2744
2797
|
type: "button",
|
|
2745
2798
|
onClick: handleCopyToClipboard,
|
|
@@ -2756,7 +2809,7 @@ function DslExportModal({ open, onClose, workflow, graph }) {
|
|
|
2756
2809
|
}
|
|
2757
2810
|
),
|
|
2758
2811
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
2759
|
-
|
|
2812
|
+
chunkDXY4VHMX_js.Button,
|
|
2760
2813
|
{
|
|
2761
2814
|
type: "button",
|
|
2762
2815
|
onClick: handleDownloadJson,
|
|
@@ -2915,7 +2968,7 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
2915
2968
|
}, []);
|
|
2916
2969
|
if (!open) return null;
|
|
2917
2970
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2918
|
-
|
|
2971
|
+
chunkDXY4VHMX_js.GlassFormModal,
|
|
2919
2972
|
{
|
|
2920
2973
|
open,
|
|
2921
2974
|
onClose,
|
|
@@ -2956,7 +3009,7 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
2956
3009
|
) : /* @__PURE__ */ jsxRuntime.jsxs("div", { "data-testid": "import-validation-result", children: [
|
|
2957
3010
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mb-4 flex items-center justify-between", children: [
|
|
2958
3011
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-sm font-medium text-gray-700 dark:text-gray-300", children: fileName }),
|
|
2959
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3012
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunkDXY4VHMX_js.Button, { type: "button", plain: true, size: "sm", onClick: handleReset, children: translations("chooseAnother") })
|
|
2960
3013
|
] }),
|
|
2961
3014
|
validationResult.isValid ? /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "rounded-lg border border-green-200 bg-green-50 p-4 dark:border-green-800 dark:bg-green-900/20", children: [
|
|
2962
3015
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
|
|
@@ -2984,9 +3037,9 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
2984
3037
|
] })
|
|
2985
3038
|
] }) }),
|
|
2986
3039
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center justify-end gap-3 border-t border-gray-200 px-1 py-4 dark:border-gray-700", children: [
|
|
2987
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3040
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunkDXY4VHMX_js.Button, { type: "button", onClick: onClose, outline: true, size: "sm", "data-testid": "import-cancel-button", children: translations("cancel") }),
|
|
2988
3041
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
2989
|
-
|
|
3042
|
+
chunkDXY4VHMX_js.Button,
|
|
2990
3043
|
{
|
|
2991
3044
|
type: "button",
|
|
2992
3045
|
onClick: handleImport,
|
|
@@ -3007,14 +3060,14 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
3007
3060
|
}
|
|
3008
3061
|
|
|
3009
3062
|
// src/astrlabe/store/selectors.ts
|
|
3010
|
-
var useCanUndo = () =>
|
|
3011
|
-
var useCanRedo = () =>
|
|
3012
|
-
var useHasCopied = () =>
|
|
3013
|
-
var useContextMenu = () =>
|
|
3014
|
-
var useEditingNodeId = () =>
|
|
3015
|
-
var useSelectedNodeCount = () =>
|
|
3016
|
-
var useIsRunning = () =>
|
|
3017
|
-
var useNodeResults = () =>
|
|
3063
|
+
var useCanUndo = () => chunkX7Q3IBX5_js.useWorkflowStore((state) => state.past.length > 0);
|
|
3064
|
+
var useCanRedo = () => chunkX7Q3IBX5_js.useWorkflowStore((state) => state.future.length > 0);
|
|
3065
|
+
var useHasCopied = () => chunkX7Q3IBX5_js.useWorkflowStore((state) => state.clipboard !== null);
|
|
3066
|
+
var useContextMenu = () => chunkX7Q3IBX5_js.useWorkflowStore((state) => state.contextMenu);
|
|
3067
|
+
var useEditingNodeId = () => chunkX7Q3IBX5_js.useWorkflowStore((state) => state.editingNodeId);
|
|
3068
|
+
var useSelectedNodeCount = () => chunkX7Q3IBX5_js.useWorkflowStore((state) => state.nodes.filter((node) => node.selected).length);
|
|
3069
|
+
var useIsRunning = () => chunkX7Q3IBX5_js.useWorkflowStore((state) => state.isRunning);
|
|
3070
|
+
var useNodeResults = () => chunkX7Q3IBX5_js.useWorkflowStore((state) => state.nodeResults);
|
|
3018
3071
|
var DEFAULT_MAX_HISTORY = 50;
|
|
3019
3072
|
function useUndoRedo(nodes, edges, setNodes, setEdges, maxHistory = DEFAULT_MAX_HISTORY) {
|
|
3020
3073
|
const pastRef = react.useRef([]);
|
|
@@ -3302,239 +3355,239 @@ Object.defineProperty(exports, "validateWorkflowGraph", {
|
|
|
3302
3355
|
});
|
|
3303
3356
|
Object.defineProperty(exports, "AgentFlowNode", {
|
|
3304
3357
|
enumerable: true,
|
|
3305
|
-
get: function () { return
|
|
3358
|
+
get: function () { return chunkX7Q3IBX5_js.AgentFlowNode; }
|
|
3306
3359
|
});
|
|
3307
3360
|
Object.defineProperty(exports, "AgentToolFlowNode", {
|
|
3308
3361
|
enumerable: true,
|
|
3309
|
-
get: function () { return
|
|
3362
|
+
get: function () { return chunkX7Q3IBX5_js.AgentToolFlowNode; }
|
|
3310
3363
|
});
|
|
3311
3364
|
Object.defineProperty(exports, "AnswerFlowNode", {
|
|
3312
3365
|
enumerable: true,
|
|
3313
|
-
get: function () { return
|
|
3366
|
+
get: function () { return chunkX7Q3IBX5_js.AnswerFlowNode; }
|
|
3314
3367
|
});
|
|
3315
3368
|
Object.defineProperty(exports, "AnthropicIcon", {
|
|
3316
3369
|
enumerable: true,
|
|
3317
|
-
get: function () { return
|
|
3370
|
+
get: function () { return chunkX7Q3IBX5_js.AnthropicIcon; }
|
|
3318
3371
|
});
|
|
3319
3372
|
Object.defineProperty(exports, "CodeFlowNode", {
|
|
3320
3373
|
enumerable: true,
|
|
3321
|
-
get: function () { return
|
|
3374
|
+
get: function () { return chunkX7Q3IBX5_js.CodeFlowNode; }
|
|
3322
3375
|
});
|
|
3323
3376
|
Object.defineProperty(exports, "CrewAIIcon", {
|
|
3324
3377
|
enumerable: true,
|
|
3325
|
-
get: function () { return
|
|
3378
|
+
get: function () { return chunkX7Q3IBX5_js.CrewAIIcon; }
|
|
3326
3379
|
});
|
|
3327
3380
|
Object.defineProperty(exports, "DocumentExtractorFlowNode", {
|
|
3328
3381
|
enumerable: true,
|
|
3329
|
-
get: function () { return
|
|
3382
|
+
get: function () { return chunkX7Q3IBX5_js.DocumentExtractorFlowNode; }
|
|
3330
3383
|
});
|
|
3331
3384
|
Object.defineProperty(exports, "EndFlowNode", {
|
|
3332
3385
|
enumerable: true,
|
|
3333
|
-
get: function () { return
|
|
3386
|
+
get: function () { return chunkX7Q3IBX5_js.EndFlowNode; }
|
|
3334
3387
|
});
|
|
3335
3388
|
Object.defineProperty(exports, "EntityFlowNode", {
|
|
3336
3389
|
enumerable: true,
|
|
3337
|
-
get: function () { return
|
|
3390
|
+
get: function () { return chunkX7Q3IBX5_js.EntityFlowNode; }
|
|
3338
3391
|
});
|
|
3339
3392
|
Object.defineProperty(exports, "FRAMEWORK_META", {
|
|
3340
3393
|
enumerable: true,
|
|
3341
|
-
get: function () { return
|
|
3394
|
+
get: function () { return chunkX7Q3IBX5_js.FRAMEWORK_META; }
|
|
3342
3395
|
});
|
|
3343
3396
|
Object.defineProperty(exports, "GoogleADKIcon", {
|
|
3344
3397
|
enumerable: true,
|
|
3345
|
-
get: function () { return
|
|
3398
|
+
get: function () { return chunkX7Q3IBX5_js.GoogleADKIcon; }
|
|
3346
3399
|
});
|
|
3347
3400
|
Object.defineProperty(exports, "GroupFlowNode", {
|
|
3348
3401
|
enumerable: true,
|
|
3349
|
-
get: function () { return
|
|
3402
|
+
get: function () { return chunkX7Q3IBX5_js.GroupFlowNode; }
|
|
3350
3403
|
});
|
|
3351
3404
|
Object.defineProperty(exports, "HttpRequestFlowNode", {
|
|
3352
3405
|
enumerable: true,
|
|
3353
|
-
get: function () { return
|
|
3406
|
+
get: function () { return chunkX7Q3IBX5_js.HttpRequestFlowNode; }
|
|
3354
3407
|
});
|
|
3355
3408
|
Object.defineProperty(exports, "IfElseFlowNode", {
|
|
3356
3409
|
enumerable: true,
|
|
3357
|
-
get: function () { return
|
|
3410
|
+
get: function () { return chunkX7Q3IBX5_js.IfElseFlowNode; }
|
|
3358
3411
|
});
|
|
3359
3412
|
Object.defineProperty(exports, "IterationFlowNode", {
|
|
3360
3413
|
enumerable: true,
|
|
3361
|
-
get: function () { return
|
|
3414
|
+
get: function () { return chunkX7Q3IBX5_js.IterationFlowNode; }
|
|
3362
3415
|
});
|
|
3363
3416
|
Object.defineProperty(exports, "IterationStartFlowNode", {
|
|
3364
3417
|
enumerable: true,
|
|
3365
|
-
get: function () { return
|
|
3418
|
+
get: function () { return chunkX7Q3IBX5_js.IterationStartFlowNode; }
|
|
3366
3419
|
});
|
|
3367
3420
|
Object.defineProperty(exports, "KnowledgeBaseFlowNode", {
|
|
3368
3421
|
enumerable: true,
|
|
3369
|
-
get: function () { return
|
|
3422
|
+
get: function () { return chunkX7Q3IBX5_js.KnowledgeBaseFlowNode; }
|
|
3370
3423
|
});
|
|
3371
3424
|
Object.defineProperty(exports, "LOGIC_ICON_MAP", {
|
|
3372
3425
|
enumerable: true,
|
|
3373
|
-
get: function () { return
|
|
3426
|
+
get: function () { return chunkX7Q3IBX5_js.LOGIC_ICON_MAP; }
|
|
3374
3427
|
});
|
|
3375
3428
|
Object.defineProperty(exports, "LOGIC_NODE_BADGE_COLORS", {
|
|
3376
3429
|
enumerable: true,
|
|
3377
|
-
get: function () { return
|
|
3430
|
+
get: function () { return chunkX7Q3IBX5_js.LOGIC_NODE_BADGE_COLORS; }
|
|
3378
3431
|
});
|
|
3379
3432
|
Object.defineProperty(exports, "LOGIC_NODE_GRADIENTS", {
|
|
3380
3433
|
enumerable: true,
|
|
3381
|
-
get: function () { return
|
|
3434
|
+
get: function () { return chunkX7Q3IBX5_js.LOGIC_NODE_GRADIENTS; }
|
|
3382
3435
|
});
|
|
3383
3436
|
Object.defineProperty(exports, "LOGIC_NODE_HANDLE_COLORS", {
|
|
3384
3437
|
enumerable: true,
|
|
3385
|
-
get: function () { return
|
|
3438
|
+
get: function () { return chunkX7Q3IBX5_js.LOGIC_NODE_HANDLE_COLORS; }
|
|
3386
3439
|
});
|
|
3387
3440
|
Object.defineProperty(exports, "LangChainIcon", {
|
|
3388
3441
|
enumerable: true,
|
|
3389
|
-
get: function () { return
|
|
3442
|
+
get: function () { return chunkX7Q3IBX5_js.LangChainIcon; }
|
|
3390
3443
|
});
|
|
3391
3444
|
Object.defineProperty(exports, "ListOperatorFlowNode", {
|
|
3392
3445
|
enumerable: true,
|
|
3393
|
-
get: function () { return
|
|
3446
|
+
get: function () { return chunkX7Q3IBX5_js.ListOperatorFlowNode; }
|
|
3394
3447
|
});
|
|
3395
3448
|
Object.defineProperty(exports, "LogicNodeModal", {
|
|
3396
3449
|
enumerable: true,
|
|
3397
|
-
get: function () { return
|
|
3450
|
+
get: function () { return chunkX7Q3IBX5_js.LogicNodeModal; }
|
|
3398
3451
|
});
|
|
3399
3452
|
Object.defineProperty(exports, "MINIMAP_NODE_COLORS", {
|
|
3400
3453
|
enumerable: true,
|
|
3401
|
-
get: function () { return
|
|
3454
|
+
get: function () { return chunkX7Q3IBX5_js.MINIMAP_NODE_COLORS; }
|
|
3402
3455
|
});
|
|
3403
3456
|
Object.defineProperty(exports, "ModelProviderFlowNode", {
|
|
3404
3457
|
enumerable: true,
|
|
3405
|
-
get: function () { return
|
|
3458
|
+
get: function () { return chunkX7Q3IBX5_js.ModelProviderFlowNode; }
|
|
3406
3459
|
});
|
|
3407
3460
|
Object.defineProperty(exports, "NODE_EXECUTION_ACCENT_COLORS", {
|
|
3408
3461
|
enumerable: true,
|
|
3409
|
-
get: function () { return
|
|
3462
|
+
get: function () { return chunkX7Q3IBX5_js.NODE_EXECUTION_ACCENT_COLORS; }
|
|
3410
3463
|
});
|
|
3411
3464
|
Object.defineProperty(exports, "NodeCard", {
|
|
3412
3465
|
enumerable: true,
|
|
3413
|
-
get: function () { return
|
|
3466
|
+
get: function () { return chunkX7Q3IBX5_js.NodeCard; }
|
|
3414
3467
|
});
|
|
3415
3468
|
Object.defineProperty(exports, "NodeContextMenu", {
|
|
3416
3469
|
enumerable: true,
|
|
3417
|
-
get: function () { return
|
|
3470
|
+
get: function () { return chunkX7Q3IBX5_js.NodeContextMenu; }
|
|
3418
3471
|
});
|
|
3419
3472
|
Object.defineProperty(exports, "NoteFlowNode", {
|
|
3420
3473
|
enumerable: true,
|
|
3421
|
-
get: function () { return
|
|
3474
|
+
get: function () { return chunkX7Q3IBX5_js.NoteFlowNode; }
|
|
3422
3475
|
});
|
|
3423
3476
|
Object.defineProperty(exports, "OpenAIIcon", {
|
|
3424
3477
|
enumerable: true,
|
|
3425
|
-
get: function () { return
|
|
3478
|
+
get: function () { return chunkX7Q3IBX5_js.OpenAIIcon; }
|
|
3426
3479
|
});
|
|
3427
3480
|
Object.defineProperty(exports, "PanelContextMenu", {
|
|
3428
3481
|
enumerable: true,
|
|
3429
|
-
get: function () { return
|
|
3482
|
+
get: function () { return chunkX7Q3IBX5_js.PanelContextMenu; }
|
|
3430
3483
|
});
|
|
3431
3484
|
Object.defineProperty(exports, "ParameterExtractorFlowNode", {
|
|
3432
3485
|
enumerable: true,
|
|
3433
|
-
get: function () { return
|
|
3486
|
+
get: function () { return chunkX7Q3IBX5_js.ParameterExtractorFlowNode; }
|
|
3434
3487
|
});
|
|
3435
3488
|
Object.defineProperty(exports, "QuestionClassifierFlowNode", {
|
|
3436
3489
|
enumerable: true,
|
|
3437
|
-
get: function () { return
|
|
3490
|
+
get: function () { return chunkX7Q3IBX5_js.QuestionClassifierFlowNode; }
|
|
3438
3491
|
});
|
|
3439
3492
|
Object.defineProperty(exports, "RuleFlowNode", {
|
|
3440
3493
|
enumerable: true,
|
|
3441
|
-
get: function () { return
|
|
3494
|
+
get: function () { return chunkX7Q3IBX5_js.RuleFlowNode; }
|
|
3442
3495
|
});
|
|
3443
3496
|
Object.defineProperty(exports, "SelectionContextMenu", {
|
|
3444
3497
|
enumerable: true,
|
|
3445
|
-
get: function () { return
|
|
3498
|
+
get: function () { return chunkX7Q3IBX5_js.SelectionContextMenu; }
|
|
3446
3499
|
});
|
|
3447
3500
|
Object.defineProperty(exports, "StartFlowNode", {
|
|
3448
3501
|
enumerable: true,
|
|
3449
|
-
get: function () { return
|
|
3502
|
+
get: function () { return chunkX7Q3IBX5_js.StartFlowNode; }
|
|
3450
3503
|
});
|
|
3451
3504
|
Object.defineProperty(exports, "StrandsIcon", {
|
|
3452
3505
|
enumerable: true,
|
|
3453
|
-
get: function () { return
|
|
3506
|
+
get: function () { return chunkX7Q3IBX5_js.StrandsIcon; }
|
|
3454
3507
|
});
|
|
3455
3508
|
Object.defineProperty(exports, "TemplateTransformFlowNode", {
|
|
3456
3509
|
enumerable: true,
|
|
3457
|
-
get: function () { return
|
|
3510
|
+
get: function () { return chunkX7Q3IBX5_js.TemplateTransformFlowNode; }
|
|
3458
3511
|
});
|
|
3459
3512
|
Object.defineProperty(exports, "ToolFlowNode", {
|
|
3460
3513
|
enumerable: true,
|
|
3461
|
-
get: function () { return
|
|
3514
|
+
get: function () { return chunkX7Q3IBX5_js.ToolFlowNode; }
|
|
3462
3515
|
});
|
|
3463
3516
|
Object.defineProperty(exports, "VariableAggregatorFlowNode", {
|
|
3464
3517
|
enumerable: true,
|
|
3465
|
-
get: function () { return
|
|
3518
|
+
get: function () { return chunkX7Q3IBX5_js.VariableAggregatorFlowNode; }
|
|
3466
3519
|
});
|
|
3467
3520
|
Object.defineProperty(exports, "VariableAssignerFlowNode", {
|
|
3468
3521
|
enumerable: true,
|
|
3469
|
-
get: function () { return
|
|
3522
|
+
get: function () { return chunkX7Q3IBX5_js.VariableAssignerFlowNode; }
|
|
3470
3523
|
});
|
|
3471
3524
|
Object.defineProperty(exports, "WorkflowBuilderProvider", {
|
|
3472
3525
|
enumerable: true,
|
|
3473
|
-
get: function () { return
|
|
3526
|
+
get: function () { return chunkX7Q3IBX5_js.WorkflowBuilderProvider; }
|
|
3474
3527
|
});
|
|
3475
3528
|
Object.defineProperty(exports, "Workspace", {
|
|
3476
3529
|
enumerable: true,
|
|
3477
|
-
get: function () { return
|
|
3530
|
+
get: function () { return chunkX7Q3IBX5_js.Workspace; }
|
|
3478
3531
|
});
|
|
3479
3532
|
Object.defineProperty(exports, "getCompatibleModels", {
|
|
3480
3533
|
enumerable: true,
|
|
3481
|
-
get: function () { return
|
|
3534
|
+
get: function () { return chunkX7Q3IBX5_js.getCompatibleModels; }
|
|
3482
3535
|
});
|
|
3483
3536
|
Object.defineProperty(exports, "getDefaultFrameworkForModel", {
|
|
3484
3537
|
enumerable: true,
|
|
3485
|
-
get: function () { return
|
|
3538
|
+
get: function () { return chunkX7Q3IBX5_js.getDefaultFrameworkForModel; }
|
|
3486
3539
|
});
|
|
3487
3540
|
Object.defineProperty(exports, "getEntityBadgeColor", {
|
|
3488
3541
|
enumerable: true,
|
|
3489
|
-
get: function () { return
|
|
3542
|
+
get: function () { return chunkX7Q3IBX5_js.getEntityBadgeColor; }
|
|
3490
3543
|
});
|
|
3491
3544
|
Object.defineProperty(exports, "getEntityGradient", {
|
|
3492
3545
|
enumerable: true,
|
|
3493
|
-
get: function () { return
|
|
3546
|
+
get: function () { return chunkX7Q3IBX5_js.getEntityGradient; }
|
|
3494
3547
|
});
|
|
3495
3548
|
Object.defineProperty(exports, "getEntityHandleColor", {
|
|
3496
3549
|
enumerable: true,
|
|
3497
|
-
get: function () { return
|
|
3550
|
+
get: function () { return chunkX7Q3IBX5_js.getEntityHandleColor; }
|
|
3498
3551
|
});
|
|
3499
3552
|
Object.defineProperty(exports, "getEntityIcon", {
|
|
3500
3553
|
enumerable: true,
|
|
3501
|
-
get: function () { return
|
|
3554
|
+
get: function () { return chunkX7Q3IBX5_js.getEntityIcon; }
|
|
3502
3555
|
});
|
|
3503
3556
|
Object.defineProperty(exports, "getEntityMinimapColor", {
|
|
3504
3557
|
enumerable: true,
|
|
3505
|
-
get: function () { return
|
|
3558
|
+
get: function () { return chunkX7Q3IBX5_js.getEntityMinimapColor; }
|
|
3506
3559
|
});
|
|
3507
3560
|
Object.defineProperty(exports, "getFrameworkMeta", {
|
|
3508
3561
|
enumerable: true,
|
|
3509
|
-
get: function () { return
|
|
3562
|
+
get: function () { return chunkX7Q3IBX5_js.getFrameworkMeta; }
|
|
3510
3563
|
});
|
|
3511
3564
|
Object.defineProperty(exports, "getNodeExecutionAccent", {
|
|
3512
3565
|
enumerable: true,
|
|
3513
|
-
get: function () { return
|
|
3566
|
+
get: function () { return chunkX7Q3IBX5_js.getNodeExecutionAccent; }
|
|
3514
3567
|
});
|
|
3515
3568
|
Object.defineProperty(exports, "getNodeExecutionAccentRgb", {
|
|
3516
3569
|
enumerable: true,
|
|
3517
|
-
get: function () { return
|
|
3570
|
+
get: function () { return chunkX7Q3IBX5_js.getNodeExecutionAccentRgb; }
|
|
3518
3571
|
});
|
|
3519
3572
|
Object.defineProperty(exports, "isModelCompatibleWithFramework", {
|
|
3520
3573
|
enumerable: true,
|
|
3521
|
-
get: function () { return
|
|
3574
|
+
get: function () { return chunkX7Q3IBX5_js.isModelCompatibleWithFramework; }
|
|
3522
3575
|
});
|
|
3523
3576
|
Object.defineProperty(exports, "useModalStore", {
|
|
3524
3577
|
enumerable: true,
|
|
3525
|
-
get: function () { return
|
|
3578
|
+
get: function () { return chunkX7Q3IBX5_js.useModalStore; }
|
|
3526
3579
|
});
|
|
3527
3580
|
Object.defineProperty(exports, "useWorkflowBuilderClient", {
|
|
3528
3581
|
enumerable: true,
|
|
3529
|
-
get: function () { return
|
|
3582
|
+
get: function () { return chunkX7Q3IBX5_js.useWorkflowBuilderClient; }
|
|
3530
3583
|
});
|
|
3531
3584
|
Object.defineProperty(exports, "useWorkflowBuilderClientOptional", {
|
|
3532
3585
|
enumerable: true,
|
|
3533
|
-
get: function () { return
|
|
3586
|
+
get: function () { return chunkX7Q3IBX5_js.useWorkflowBuilderClientOptional; }
|
|
3534
3587
|
});
|
|
3535
3588
|
Object.defineProperty(exports, "useWorkflowStore", {
|
|
3536
3589
|
enumerable: true,
|
|
3537
|
-
get: function () { return
|
|
3590
|
+
get: function () { return chunkX7Q3IBX5_js.useWorkflowStore; }
|
|
3538
3591
|
});
|
|
3539
3592
|
Object.defineProperty(exports, "GraphNodeBadge", {
|
|
3540
3593
|
enumerable: true,
|