@datatechsolutions/ui 2.11.52 → 2.11.55
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.d.mts +1 -1
- package/dist/astrlabe/index.d.ts +1 -1
- package/dist/astrlabe/index.js +143 -135
- package/dist/astrlabe/index.mjs +5 -5
- package/dist/astrlabe/utils.d.mts +27 -23
- package/dist/astrlabe/utils.d.ts +27 -23
- package/dist/astrlabe/utils.js +11 -3
- package/dist/astrlabe/utils.mjs +1 -1
- package/dist/astrlabe/workflow-canvas.js +4 -4
- package/dist/astrlabe/workflow-canvas.mjs +3 -3
- package/dist/chunk-53SRKVKQ.mjs +542 -0
- package/dist/chunk-53SRKVKQ.mjs.map +1 -0
- package/dist/{chunk-2BUYACAN.js → chunk-5N6QYUAA.js} +142 -3
- package/dist/chunk-5N6QYUAA.js.map +1 -0
- package/dist/chunk-5UU3RQRB.js +547 -0
- package/dist/chunk-5UU3RQRB.js.map +1 -0
- package/dist/{chunk-AFVXNLGI.js → chunk-7LCEP4X5.js} +53 -53
- package/dist/{chunk-AFVXNLGI.js.map → chunk-7LCEP4X5.js.map} +1 -1
- package/dist/{chunk-F2V7GC3Y.mjs → chunk-GWLWSE2C.mjs} +141 -4
- package/dist/chunk-GWLWSE2C.mjs.map +1 -0
- package/dist/{chunk-HOCGFL5J.mjs → chunk-PEBQWL6R.mjs} +4 -4
- package/dist/{chunk-HOCGFL5J.mjs.map → chunk-PEBQWL6R.mjs.map} +1 -1
- package/dist/index.d.mts +69 -1
- package/dist/index.d.ts +69 -1
- package/dist/index.js +743 -735
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
- package/dist/chunk-2BUYACAN.js.map +0 -1
- package/dist/chunk-3GE3MBUZ.js +0 -279
- package/dist/chunk-3GE3MBUZ.js.map +0 -1
- package/dist/chunk-BLNXRUC4.mjs +0 -276
- package/dist/chunk-BLNXRUC4.mjs.map +0 -1
- package/dist/chunk-F2V7GC3Y.mjs.map +0 -1
package/dist/astrlabe/index.js
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
require('../chunk-55H6WZQP.js');
|
|
5
|
-
var
|
|
6
|
-
var
|
|
7
|
-
var
|
|
5
|
+
var chunk5UU3RQRB_js = require('../chunk-5UU3RQRB.js');
|
|
6
|
+
var chunk7LCEP4X5_js = require('../chunk-7LCEP4X5.js');
|
|
7
|
+
var chunk5N6QYUAA_js = require('../chunk-5N6QYUAA.js');
|
|
8
|
+
var chunkYXN2K77G_js = require('../chunk-YXN2K77G.js');
|
|
8
9
|
require('../chunk-S7KHTUHA.js');
|
|
9
10
|
require('../chunk-UZ3CMNUJ.js');
|
|
10
11
|
var chunkP4YYEM4B_js = require('../chunk-P4YYEM4B.js');
|
|
11
12
|
var chunkPWBWP5FJ_js = require('../chunk-PWBWP5FJ.js');
|
|
12
|
-
var chunkYXN2K77G_js = require('../chunk-YXN2K77G.js');
|
|
13
13
|
var react = require('react');
|
|
14
14
|
var outline = require('@heroicons/react/24/outline');
|
|
15
15
|
var jsxRuntime = require('react/jsx-runtime');
|
|
@@ -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 = chunk7LCEP4X5_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(chunk7LCEP4X5_js.FRAMEWORK_META);
|
|
363
363
|
const hasProviderConstraints = connectedProviderTypes.length > 0;
|
|
364
|
-
const compatibleModels =
|
|
364
|
+
const compatibleModels = chunk7LCEP4X5_js.getCompatibleModels(models, selectedFramework);
|
|
365
365
|
const handleFrameworkChange = react.useCallback((newFramework) => {
|
|
366
366
|
setSelectedFramework(newFramework);
|
|
367
|
-
if (!
|
|
368
|
-
const compatible =
|
|
367
|
+
if (!chunk7LCEP4X5_js.isModelCompatibleWithFramework(selectedModelId, newFramework)) {
|
|
368
|
+
const compatible = chunk7LCEP4X5_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 = chunk7LCEP4X5_js.FRAMEWORK_META[key];
|
|
380
380
|
const isSelected = key === selectedFramework;
|
|
381
|
-
const compatCount =
|
|
382
|
-
const isCompatibleWithProviders = !hasProviderConstraints ||
|
|
381
|
+
const compatCount = chunk7LCEP4X5_js.getCompatibleModels(models, key).length;
|
|
382
|
+
const isCompatibleWithProviders = !hasProviderConstraints || chunk7LCEP4X5_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 = chunk7LCEP4X5_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 = chunk7LCEP4X5_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) => chunk7LCEP4X5_js.isModelCompatibleWithFramework(m.id, agentFramework)
|
|
604
604
|
);
|
|
605
605
|
const incompatibleModels = providerModels.models.filter(
|
|
606
|
-
(m) => !
|
|
606
|
+
(m) => !chunk7LCEP4X5_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 = chunk7LCEP4X5_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" }),
|
|
@@ -693,7 +693,7 @@ function ToolsTab({ agentTools, enabledToolIds, onToggle, agentFramework, t }) {
|
|
|
693
693
|
event.stopPropagation();
|
|
694
694
|
},
|
|
695
695
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
696
|
-
|
|
696
|
+
chunk5N6QYUAA_js.ToggleSwitch,
|
|
697
697
|
{
|
|
698
698
|
checked: isEnabled,
|
|
699
699
|
onChange: () => onToggle(tool.agentToolId),
|
|
@@ -714,9 +714,9 @@ function ToolsTab({ agentTools, enabledToolIds, onToggle, agentFramework, t }) {
|
|
|
714
714
|
}
|
|
715
715
|
function AgentModal({ onSaved }) {
|
|
716
716
|
const t = chunkYXN2K77G_js.useTranslations("agents.workflow");
|
|
717
|
-
const activeModal =
|
|
718
|
-
const agentData =
|
|
719
|
-
const closeModal =
|
|
717
|
+
const activeModal = chunk7LCEP4X5_js.useModalStore((s) => s.activeModal);
|
|
718
|
+
const agentData = chunk7LCEP4X5_js.useModalStore((s) => s.agentData);
|
|
719
|
+
const closeModal = chunk7LCEP4X5_js.useModalStore((s) => s.closeModal);
|
|
720
720
|
const open = activeModal === "agent";
|
|
721
721
|
const agent = agentData?.agent ?? null;
|
|
722
722
|
const models = agentData?.models ?? [];
|
|
@@ -791,7 +791,7 @@ function AgentModal({ onSaved }) {
|
|
|
791
791
|
)
|
|
792
792
|
] });
|
|
793
793
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
794
|
-
|
|
794
|
+
chunk5N6QYUAA_js.GlassModal,
|
|
795
795
|
{
|
|
796
796
|
open,
|
|
797
797
|
onClose: handleClose,
|
|
@@ -943,7 +943,7 @@ function SubworkflowModal({ onSaved, onMaximize }) {
|
|
|
943
943
|
const markDirty = useSubworkflowStore((s) => s.markDirty);
|
|
944
944
|
const markSaved = useSubworkflowStore((s) => s.markSaved);
|
|
945
945
|
const closeModal = useSubworkflowStore((s) => s.closeModal);
|
|
946
|
-
const agentBehind =
|
|
946
|
+
const agentBehind = chunk7LCEP4X5_js.useModalStore((s) => s.activeModal === "agent" ? s.agentData?.agent?.name : null);
|
|
947
947
|
const isCreateMode = !tool?.toolId;
|
|
948
948
|
const initialGraph = react.useMemo(() => {
|
|
949
949
|
const config = tool?.config;
|
|
@@ -972,9 +972,9 @@ function SubworkflowModal({ onSaved, onMaximize }) {
|
|
|
972
972
|
}, [tool, onSaved, name, category, description, timeoutMs, latestGraphRef, markSaved]);
|
|
973
973
|
if (!tool) return null;
|
|
974
974
|
const categoryKey = category ?? "external";
|
|
975
|
-
const gradient = tool.color ??
|
|
976
|
-
const categoryPill =
|
|
977
|
-
const IconComponent =
|
|
975
|
+
const gradient = tool.color ?? chunk7LCEP4X5_js.CATEGORY_COLORS[categoryKey] ?? chunk7LCEP4X5_js.CATEGORY_COLORS.external;
|
|
976
|
+
const categoryPill = chunk7LCEP4X5_js.CATEGORY_PILL_COLORS[categoryKey] ?? chunk7LCEP4X5_js.CATEGORY_PILL_COLORS.external;
|
|
977
|
+
const IconComponent = chunk7LCEP4X5_js.ICON_MAP[tool.icon ?? ""] ?? outline.ArrowPathRoundedSquareIcon;
|
|
978
978
|
const graph = latestGraphRef.current;
|
|
979
979
|
const startNode = graph.nodes.find((n) => n.type === "start");
|
|
980
980
|
const endNode = graph.nodes.find((n) => n.type === "end");
|
|
@@ -1007,7 +1007,7 @@ function SubworkflowModal({ onSaved, onMaximize }) {
|
|
|
1007
1007
|
] })
|
|
1008
1008
|
] });
|
|
1009
1009
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
1010
|
-
|
|
1010
|
+
chunk5N6QYUAA_js.GlassModal,
|
|
1011
1011
|
{
|
|
1012
1012
|
open,
|
|
1013
1013
|
onClose: closeModal,
|
|
@@ -1039,7 +1039,7 @@ function SubworkflowModal({ onSaved, onMaximize }) {
|
|
|
1039
1039
|
{
|
|
1040
1040
|
type: "button",
|
|
1041
1041
|
onClick: () => setCategory(cat),
|
|
1042
|
-
className: `rounded-full px-2 py-1 text-[9px] font-semibold transition-all ${cat === category ? `${
|
|
1042
|
+
className: `rounded-full px-2 py-1 text-[9px] font-semibold transition-all ${cat === category ? `${chunk7LCEP4X5_js.CATEGORY_PILL_COLORS[cat] ?? chunk7LCEP4X5_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"}`,
|
|
1043
1043
|
children: cat
|
|
1044
1044
|
},
|
|
1045
1045
|
cat
|
|
@@ -1126,7 +1126,7 @@ function SubworkflowModal({ onSaved, onMaximize }) {
|
|
|
1126
1126
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "mt-auto" })
|
|
1127
1127
|
] }),
|
|
1128
1128
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex-1", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1129
|
-
|
|
1129
|
+
chunk7LCEP4X5_js.WorkflowCanvas,
|
|
1130
1130
|
{
|
|
1131
1131
|
initialGraph,
|
|
1132
1132
|
agents: [],
|
|
@@ -1142,9 +1142,9 @@ function SubworkflowModal({ onSaved, onMaximize }) {
|
|
|
1142
1142
|
}
|
|
1143
1143
|
function PipelineSettingsModal({ onSave }) {
|
|
1144
1144
|
const t = chunkYXN2K77G_js.useTranslations("agents.workflow");
|
|
1145
|
-
const activeModal =
|
|
1146
|
-
const data =
|
|
1147
|
-
const closeModal =
|
|
1145
|
+
const activeModal = chunk7LCEP4X5_js.useModalStore((s) => s.activeModal);
|
|
1146
|
+
const data = chunk7LCEP4X5_js.useModalStore((s) => s.pipelineSettingsData);
|
|
1147
|
+
const closeModal = chunk7LCEP4X5_js.useModalStore((s) => s.closeModal);
|
|
1148
1148
|
const open = activeModal === "pipeline-settings";
|
|
1149
1149
|
const [nameValue, setNameValue] = react.useState("");
|
|
1150
1150
|
const [descriptionValue, setDescriptionValue] = react.useState("");
|
|
@@ -1179,7 +1179,7 @@ function PipelineSettingsModal({ onSave }) {
|
|
|
1179
1179
|
}
|
|
1180
1180
|
),
|
|
1181
1181
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
1182
|
-
|
|
1182
|
+
chunk5N6QYUAA_js.Button,
|
|
1183
1183
|
{
|
|
1184
1184
|
type: "submit",
|
|
1185
1185
|
form: "pipeline-settings-form",
|
|
@@ -1194,7 +1194,7 @@ function PipelineSettingsModal({ onSave }) {
|
|
|
1194
1194
|
)
|
|
1195
1195
|
] });
|
|
1196
1196
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
1197
|
-
|
|
1197
|
+
chunk5N6QYUAA_js.GlassModal,
|
|
1198
1198
|
{
|
|
1199
1199
|
open,
|
|
1200
1200
|
onClose: closeModal,
|
|
@@ -1208,7 +1208,7 @@ function PipelineSettingsModal({ onSave }) {
|
|
|
1208
1208
|
onSubmit: handleSubmit,
|
|
1209
1209
|
children: /* @__PURE__ */ jsxRuntime.jsxs("form", { id: "pipeline-settings-form", onSubmit: handleSubmit, className: "space-y-6", children: [
|
|
1210
1210
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1211
|
-
|
|
1211
|
+
chunk5N6QYUAA_js.FormInput,
|
|
1212
1212
|
{
|
|
1213
1213
|
label: t("pipelineName"),
|
|
1214
1214
|
value: nameValue,
|
|
@@ -1218,7 +1218,7 @@ function PipelineSettingsModal({ onSave }) {
|
|
|
1218
1218
|
}
|
|
1219
1219
|
),
|
|
1220
1220
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1221
|
-
|
|
1221
|
+
chunk5N6QYUAA_js.FormTextarea,
|
|
1222
1222
|
{
|
|
1223
1223
|
label: t("pipelineDescription"),
|
|
1224
1224
|
value: descriptionValue,
|
|
@@ -1363,8 +1363,8 @@ function CollapsibleSection({ title, icon, colorClass, defaultOpen = true, count
|
|
|
1363
1363
|
] });
|
|
1364
1364
|
}
|
|
1365
1365
|
function LogicNodeItemCard({ item, translationFunction }) {
|
|
1366
|
-
const IconComponent =
|
|
1367
|
-
const gradient =
|
|
1366
|
+
const IconComponent = chunk7LCEP4X5_js.LOGIC_ICON_MAP[item.nodeType];
|
|
1367
|
+
const gradient = chunk7LCEP4X5_js.LOGIC_NODE_GRADIENTS[item.nodeType] ?? "from-gray-400 to-gray-500";
|
|
1368
1368
|
const defaultConfig = chunkPWBWP5FJ_js.createDefaultLogicNodeConfig(item.nodeType);
|
|
1369
1369
|
const configJson = defaultConfig ? JSON.stringify(defaultConfig) : void 0;
|
|
1370
1370
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1530,7 +1530,7 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], mod
|
|
|
1530
1530
|
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "truncate text-[10px] text-gray-400 dark:text-gray-500", children: tool.category })
|
|
1531
1531
|
] }),
|
|
1532
1532
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1533
|
-
|
|
1533
|
+
chunk5N6QYUAA_js.ToggleSwitch,
|
|
1534
1534
|
{
|
|
1535
1535
|
checked: Boolean(tool.enabled),
|
|
1536
1536
|
onChange: () => {
|
|
@@ -1571,7 +1571,7 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], mod
|
|
|
1571
1571
|
] })
|
|
1572
1572
|
] }),
|
|
1573
1573
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1574
|
-
|
|
1574
|
+
chunk5N6QYUAA_js.ToggleSwitch,
|
|
1575
1575
|
{
|
|
1576
1576
|
checked: Boolean(rule.enabled),
|
|
1577
1577
|
onChange: () => {
|
|
@@ -1607,8 +1607,8 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], mod
|
|
|
1607
1607
|
limit: entity.defaultLimit
|
|
1608
1608
|
});
|
|
1609
1609
|
const dsLogo = getDatasourceLogo(entity.id);
|
|
1610
|
-
const EntityIcon =
|
|
1611
|
-
const entityGradient =
|
|
1610
|
+
const EntityIcon = chunk7LCEP4X5_js.getEntityIcon(entity.id);
|
|
1611
|
+
const entityGradient = chunk7LCEP4X5_js.getEntityGradient(entity.id);
|
|
1612
1612
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1613
1613
|
"div",
|
|
1614
1614
|
{
|
|
@@ -1628,7 +1628,7 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], mod
|
|
|
1628
1628
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
|
|
1629
1629
|
/* @__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" }),
|
|
1630
1630
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1631
|
-
|
|
1631
|
+
chunk5N6QYUAA_js.ToggleSwitch,
|
|
1632
1632
|
{
|
|
1633
1633
|
checked: true,
|
|
1634
1634
|
onChange: () => {
|
|
@@ -2005,9 +2005,9 @@ function formatDuration2(durationMs) {
|
|
|
2005
2005
|
}
|
|
2006
2006
|
function RunPanel({ open, onClose, onRun, onStop }) {
|
|
2007
2007
|
const translations = chunkYXN2K77G_js.useTranslations("agents.workflow.runPanel");
|
|
2008
|
-
const nodes =
|
|
2009
|
-
const isRunning =
|
|
2010
|
-
const nodeResults =
|
|
2008
|
+
const nodes = chunk7LCEP4X5_js.useWorkflowStore((state) => state.nodes);
|
|
2009
|
+
const isRunning = chunk7LCEP4X5_js.useWorkflowStore((state) => state.isRunning);
|
|
2010
|
+
const nodeResults = chunk7LCEP4X5_js.useWorkflowStore((state) => state.nodeResults);
|
|
2011
2011
|
const startNode = nodes.find((node) => node.type === "start");
|
|
2012
2012
|
const hasEndNode = nodes.some((node) => node.type === "end");
|
|
2013
2013
|
const hasValidStartConfig = Boolean(
|
|
@@ -2292,8 +2292,8 @@ function inferVariables(config, nodeType) {
|
|
|
2292
2292
|
}
|
|
2293
2293
|
function VariableInspector({ open, onClose }) {
|
|
2294
2294
|
const translations = chunkYXN2K77G_js.useTranslations("agents.workflow.variableInspector");
|
|
2295
|
-
const nodes =
|
|
2296
|
-
const edges =
|
|
2295
|
+
const nodes = chunk7LCEP4X5_js.useWorkflowStore((state) => state.nodes);
|
|
2296
|
+
const edges = chunk7LCEP4X5_js.useWorkflowStore((state) => state.edges);
|
|
2297
2297
|
const [expandedNodes, setExpandedNodes] = react.useState(/* @__PURE__ */ new Set());
|
|
2298
2298
|
const toggleNodeExpansion = react.useCallback((nodeId) => {
|
|
2299
2299
|
setExpandedNodes((current) => {
|
|
@@ -2355,8 +2355,8 @@ function VariableInspector({ open, onClose }) {
|
|
|
2355
2355
|
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-2 text-sm text-gray-500 dark:text-gray-400", children: translations("noNodes") })
|
|
2356
2356
|
] }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: "divide-y divide-gray-100 dark:divide-gray-800", children: nodeVariableEntries.map((entry) => {
|
|
2357
2357
|
const isExpanded = expandedNodes.has(entry.nodeId);
|
|
2358
|
-
const IconComponent =
|
|
2359
|
-
const gradient =
|
|
2358
|
+
const IconComponent = chunk7LCEP4X5_js.LOGIC_ICON_MAP[entry.nodeType];
|
|
2359
|
+
const gradient = chunk7LCEP4X5_js.LOGIC_NODE_GRADIENTS[entry.nodeType] ?? "from-gray-400 to-gray-500";
|
|
2360
2360
|
const inputVariables = entry.variables.filter((variable) => variable.direction === "input");
|
|
2361
2361
|
const outputVariables = entry.variables.filter((variable) => variable.direction === "output");
|
|
2362
2362
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { "data-testid": `variable-node-${entry.nodeId}`, children: [
|
|
@@ -2422,7 +2422,7 @@ function RunInputDialog({
|
|
|
2422
2422
|
onRun
|
|
2423
2423
|
}) {
|
|
2424
2424
|
const t = chunkYXN2K77G_js.useTranslations("agents.workflow.runInputDialog");
|
|
2425
|
-
const nodes =
|
|
2425
|
+
const nodes = chunk7LCEP4X5_js.useWorkflowStore((state) => state.nodes);
|
|
2426
2426
|
const [values, setValues] = react.useState({});
|
|
2427
2427
|
const inputVariableNames = react.useMemo(() => {
|
|
2428
2428
|
const storeStartNode = nodes.find((node) => node.type === "start");
|
|
@@ -2449,7 +2449,7 @@ function RunInputDialog({
|
|
|
2449
2449
|
}, [onClose]);
|
|
2450
2450
|
if (!open) return null;
|
|
2451
2451
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2452
|
-
|
|
2452
|
+
chunk5N6QYUAA_js.GlassModal,
|
|
2453
2453
|
{
|
|
2454
2454
|
open,
|
|
2455
2455
|
onClose: handleClose,
|
|
@@ -2460,7 +2460,7 @@ function RunInputDialog({
|
|
|
2460
2460
|
/* @__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: [
|
|
2461
2461
|
/* @__PURE__ */ jsxRuntime.jsx("label", { className: "mb-1 block text-xs font-medium text-gray-700 dark:text-gray-300", children: variableName }),
|
|
2462
2462
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2463
|
-
|
|
2463
|
+
chunk5N6QYUAA_js.Input,
|
|
2464
2464
|
{
|
|
2465
2465
|
value: values[variableName] ?? "",
|
|
2466
2466
|
onChange: (event) => handleValueChange(variableName, event.target.value),
|
|
@@ -2469,8 +2469,8 @@ function RunInputDialog({
|
|
|
2469
2469
|
)
|
|
2470
2470
|
] }, variableName)) }),
|
|
2471
2471
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mt-4 flex items-center justify-end gap-2", children: [
|
|
2472
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2473
|
-
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
2472
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunk5N6QYUAA_js.Button, { size: "sm", plain: true, onClick: handleClose, children: t("cancel") }),
|
|
2473
|
+
/* @__PURE__ */ jsxRuntime.jsxs(chunk5N6QYUAA_js.Button, { size: "sm", gradient: true, onClick: handleSubmit, children: [
|
|
2474
2474
|
/* @__PURE__ */ jsxRuntime.jsx(outline.PlayIcon, { className: "h-3.5 w-3.5", "data-slot": "icon" }),
|
|
2475
2475
|
t("run")
|
|
2476
2476
|
] })
|
|
@@ -2503,8 +2503,8 @@ function PreviewPanel({ open, onClose, workflowId, loadRuns }) {
|
|
|
2503
2503
|
const [isLoadingRuns, setIsLoadingRuns] = react.useState(false);
|
|
2504
2504
|
const [selectedRun, setSelectedRun] = react.useState(null);
|
|
2505
2505
|
const [selectedNode, setSelectedNode] = react.useState(null);
|
|
2506
|
-
const isRunning =
|
|
2507
|
-
const nodeResults =
|
|
2506
|
+
const isRunning = chunk7LCEP4X5_js.useWorkflowStore((state) => state.isRunning);
|
|
2507
|
+
const nodeResults = chunk7LCEP4X5_js.useWorkflowStore((state) => state.nodeResults);
|
|
2508
2508
|
const refreshRuns = react.useCallback(async () => {
|
|
2509
2509
|
setIsLoadingRuns(true);
|
|
2510
2510
|
try {
|
|
@@ -2660,7 +2660,7 @@ var AutoSaveWorkspace = react.memo(function AutoSaveWorkspace2({
|
|
|
2660
2660
|
onAutoSaveGraph(graph);
|
|
2661
2661
|
}, [onAutoSaveGraph, onGraphSnapshot]);
|
|
2662
2662
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2663
|
-
|
|
2663
|
+
chunk7LCEP4X5_js.Workspace,
|
|
2664
2664
|
{
|
|
2665
2665
|
...workspaceProps,
|
|
2666
2666
|
onGraphChange: handleGraphChange
|
|
@@ -2668,7 +2668,7 @@ var AutoSaveWorkspace = react.memo(function AutoSaveWorkspace2({
|
|
|
2668
2668
|
);
|
|
2669
2669
|
});
|
|
2670
2670
|
function DynamicIslandConfirm2(props) {
|
|
2671
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2671
|
+
return /* @__PURE__ */ jsxRuntime.jsx(chunk5N6QYUAA_js.DynamicIslandConfirm, { ...props });
|
|
2672
2672
|
}
|
|
2673
2673
|
var JSON_PREVIEW_LINE_LIMIT = 50;
|
|
2674
2674
|
function DslExportModal({ open, onClose, workflow, graph }) {
|
|
@@ -2722,7 +2722,7 @@ function DslExportModal({ open, onClose, workflow, graph }) {
|
|
|
2722
2722
|
}, [jsonString, workflow.name, workflow.version]);
|
|
2723
2723
|
if (!open) return null;
|
|
2724
2724
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2725
|
-
|
|
2725
|
+
chunk5N6QYUAA_js.GlassModal,
|
|
2726
2726
|
{
|
|
2727
2727
|
open,
|
|
2728
2728
|
onClose,
|
|
@@ -2764,7 +2764,7 @@ function DslExportModal({ open, onClose, workflow, graph }) {
|
|
|
2764
2764
|
] }),
|
|
2765
2765
|
/* @__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: [
|
|
2766
2766
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2767
|
-
|
|
2767
|
+
chunk5N6QYUAA_js.Button,
|
|
2768
2768
|
{
|
|
2769
2769
|
type: "button",
|
|
2770
2770
|
onClick: handleCopyToClipboard,
|
|
@@ -2781,7 +2781,7 @@ function DslExportModal({ open, onClose, workflow, graph }) {
|
|
|
2781
2781
|
}
|
|
2782
2782
|
),
|
|
2783
2783
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
2784
|
-
|
|
2784
|
+
chunk5N6QYUAA_js.Button,
|
|
2785
2785
|
{
|
|
2786
2786
|
type: "button",
|
|
2787
2787
|
onClick: handleDownloadJson,
|
|
@@ -2940,7 +2940,7 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
2940
2940
|
}, []);
|
|
2941
2941
|
if (!open) return null;
|
|
2942
2942
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2943
|
-
|
|
2943
|
+
chunk5N6QYUAA_js.GlassModal,
|
|
2944
2944
|
{
|
|
2945
2945
|
open,
|
|
2946
2946
|
onClose,
|
|
@@ -2980,7 +2980,7 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
2980
2980
|
) : /* @__PURE__ */ jsxRuntime.jsxs("div", { "data-testid": "import-validation-result", children: [
|
|
2981
2981
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mb-4 flex items-center justify-between", children: [
|
|
2982
2982
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-sm font-medium text-gray-700 dark:text-gray-300", children: fileName }),
|
|
2983
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2983
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunk5N6QYUAA_js.Button, { type: "button", plain: true, size: "sm", onClick: handleReset, children: translations("chooseAnother") })
|
|
2984
2984
|
] }),
|
|
2985
2985
|
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: [
|
|
2986
2986
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
|
|
@@ -3008,9 +3008,9 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
3008
3008
|
] })
|
|
3009
3009
|
] }) }),
|
|
3010
3010
|
/* @__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: [
|
|
3011
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3011
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunk5N6QYUAA_js.Button, { type: "button", onClick: onClose, outline: true, size: "sm", "data-testid": "import-cancel-button", children: translations("cancel") }),
|
|
3012
3012
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
3013
|
-
|
|
3013
|
+
chunk5N6QYUAA_js.Button,
|
|
3014
3014
|
{
|
|
3015
3015
|
type: "button",
|
|
3016
3016
|
onClick: handleImport,
|
|
@@ -3031,14 +3031,14 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
3031
3031
|
}
|
|
3032
3032
|
|
|
3033
3033
|
// src/astrlabe/store/selectors.ts
|
|
3034
|
-
var useCanUndo = () =>
|
|
3035
|
-
var useCanRedo = () =>
|
|
3036
|
-
var useHasCopied = () =>
|
|
3037
|
-
var useContextMenu = () =>
|
|
3038
|
-
var useEditingNodeId = () =>
|
|
3039
|
-
var useSelectedNodeCount = () =>
|
|
3040
|
-
var useIsRunning = () =>
|
|
3041
|
-
var useNodeResults = () =>
|
|
3034
|
+
var useCanUndo = () => chunk7LCEP4X5_js.useWorkflowStore((state) => state.past.length > 0);
|
|
3035
|
+
var useCanRedo = () => chunk7LCEP4X5_js.useWorkflowStore((state) => state.future.length > 0);
|
|
3036
|
+
var useHasCopied = () => chunk7LCEP4X5_js.useWorkflowStore((state) => state.clipboard !== null);
|
|
3037
|
+
var useContextMenu = () => chunk7LCEP4X5_js.useWorkflowStore((state) => state.contextMenu);
|
|
3038
|
+
var useEditingNodeId = () => chunk7LCEP4X5_js.useWorkflowStore((state) => state.editingNodeId);
|
|
3039
|
+
var useSelectedNodeCount = () => chunk7LCEP4X5_js.useWorkflowStore((state) => state.nodes.filter((node) => node.selected).length);
|
|
3040
|
+
var useIsRunning = () => chunk7LCEP4X5_js.useWorkflowStore((state) => state.isRunning);
|
|
3041
|
+
var useNodeResults = () => chunk7LCEP4X5_js.useWorkflowStore((state) => state.nodeResults);
|
|
3042
3042
|
var DEFAULT_MAX_HISTORY = 50;
|
|
3043
3043
|
function useUndoRedo(nodes, edges, setNodes, setEdges, maxHistory = DEFAULT_MAX_HISTORY) {
|
|
3044
3044
|
const pastRef = react.useRef([]);
|
|
@@ -3318,247 +3318,255 @@ function useHelpLines() {
|
|
|
3318
3318
|
|
|
3319
3319
|
Object.defineProperty(exports, "topologicalSortAgents", {
|
|
3320
3320
|
enumerable: true,
|
|
3321
|
-
get: function () { return
|
|
3321
|
+
get: function () { return chunk5UU3RQRB_js.topologicalSortAgents; }
|
|
3322
|
+
});
|
|
3323
|
+
Object.defineProperty(exports, "validateGraphNodeConfigs", {
|
|
3324
|
+
enumerable: true,
|
|
3325
|
+
get: function () { return chunk5UU3RQRB_js.validateGraphNodeConfigs; }
|
|
3326
|
+
});
|
|
3327
|
+
Object.defineProperty(exports, "validateNodeConfig", {
|
|
3328
|
+
enumerable: true,
|
|
3329
|
+
get: function () { return chunk5UU3RQRB_js.validateNodeConfig; }
|
|
3322
3330
|
});
|
|
3323
3331
|
Object.defineProperty(exports, "validateWorkflowGraph", {
|
|
3324
3332
|
enumerable: true,
|
|
3325
|
-
get: function () { return
|
|
3333
|
+
get: function () { return chunk5UU3RQRB_js.validateWorkflowGraph; }
|
|
3326
3334
|
});
|
|
3327
3335
|
Object.defineProperty(exports, "AgentFlowNode", {
|
|
3328
3336
|
enumerable: true,
|
|
3329
|
-
get: function () { return
|
|
3337
|
+
get: function () { return chunk7LCEP4X5_js.AgentFlowNode; }
|
|
3330
3338
|
});
|
|
3331
3339
|
Object.defineProperty(exports, "AgentToolFlowNode", {
|
|
3332
3340
|
enumerable: true,
|
|
3333
|
-
get: function () { return
|
|
3341
|
+
get: function () { return chunk7LCEP4X5_js.AgentToolFlowNode; }
|
|
3334
3342
|
});
|
|
3335
3343
|
Object.defineProperty(exports, "AnswerFlowNode", {
|
|
3336
3344
|
enumerable: true,
|
|
3337
|
-
get: function () { return
|
|
3345
|
+
get: function () { return chunk7LCEP4X5_js.AnswerFlowNode; }
|
|
3338
3346
|
});
|
|
3339
3347
|
Object.defineProperty(exports, "AnthropicIcon", {
|
|
3340
3348
|
enumerable: true,
|
|
3341
|
-
get: function () { return
|
|
3349
|
+
get: function () { return chunk7LCEP4X5_js.AnthropicIcon; }
|
|
3342
3350
|
});
|
|
3343
3351
|
Object.defineProperty(exports, "CodeFlowNode", {
|
|
3344
3352
|
enumerable: true,
|
|
3345
|
-
get: function () { return
|
|
3353
|
+
get: function () { return chunk7LCEP4X5_js.CodeFlowNode; }
|
|
3346
3354
|
});
|
|
3347
3355
|
Object.defineProperty(exports, "CrewAIIcon", {
|
|
3348
3356
|
enumerable: true,
|
|
3349
|
-
get: function () { return
|
|
3357
|
+
get: function () { return chunk7LCEP4X5_js.CrewAIIcon; }
|
|
3350
3358
|
});
|
|
3351
3359
|
Object.defineProperty(exports, "DocumentExtractorFlowNode", {
|
|
3352
3360
|
enumerable: true,
|
|
3353
|
-
get: function () { return
|
|
3361
|
+
get: function () { return chunk7LCEP4X5_js.DocumentExtractorFlowNode; }
|
|
3354
3362
|
});
|
|
3355
3363
|
Object.defineProperty(exports, "EndFlowNode", {
|
|
3356
3364
|
enumerable: true,
|
|
3357
|
-
get: function () { return
|
|
3365
|
+
get: function () { return chunk7LCEP4X5_js.EndFlowNode; }
|
|
3358
3366
|
});
|
|
3359
3367
|
Object.defineProperty(exports, "EntityFlowNode", {
|
|
3360
3368
|
enumerable: true,
|
|
3361
|
-
get: function () { return
|
|
3369
|
+
get: function () { return chunk7LCEP4X5_js.EntityFlowNode; }
|
|
3362
3370
|
});
|
|
3363
3371
|
Object.defineProperty(exports, "FRAMEWORK_META", {
|
|
3364
3372
|
enumerable: true,
|
|
3365
|
-
get: function () { return
|
|
3373
|
+
get: function () { return chunk7LCEP4X5_js.FRAMEWORK_META; }
|
|
3366
3374
|
});
|
|
3367
3375
|
Object.defineProperty(exports, "GoogleADKIcon", {
|
|
3368
3376
|
enumerable: true,
|
|
3369
|
-
get: function () { return
|
|
3377
|
+
get: function () { return chunk7LCEP4X5_js.GoogleADKIcon; }
|
|
3370
3378
|
});
|
|
3371
3379
|
Object.defineProperty(exports, "GroupFlowNode", {
|
|
3372
3380
|
enumerable: true,
|
|
3373
|
-
get: function () { return
|
|
3381
|
+
get: function () { return chunk7LCEP4X5_js.GroupFlowNode; }
|
|
3374
3382
|
});
|
|
3375
3383
|
Object.defineProperty(exports, "HttpRequestFlowNode", {
|
|
3376
3384
|
enumerable: true,
|
|
3377
|
-
get: function () { return
|
|
3385
|
+
get: function () { return chunk7LCEP4X5_js.HttpRequestFlowNode; }
|
|
3378
3386
|
});
|
|
3379
3387
|
Object.defineProperty(exports, "IfElseFlowNode", {
|
|
3380
3388
|
enumerable: true,
|
|
3381
|
-
get: function () { return
|
|
3389
|
+
get: function () { return chunk7LCEP4X5_js.IfElseFlowNode; }
|
|
3382
3390
|
});
|
|
3383
3391
|
Object.defineProperty(exports, "IterationFlowNode", {
|
|
3384
3392
|
enumerable: true,
|
|
3385
|
-
get: function () { return
|
|
3393
|
+
get: function () { return chunk7LCEP4X5_js.IterationFlowNode; }
|
|
3386
3394
|
});
|
|
3387
3395
|
Object.defineProperty(exports, "IterationStartFlowNode", {
|
|
3388
3396
|
enumerable: true,
|
|
3389
|
-
get: function () { return
|
|
3397
|
+
get: function () { return chunk7LCEP4X5_js.IterationStartFlowNode; }
|
|
3390
3398
|
});
|
|
3391
3399
|
Object.defineProperty(exports, "KnowledgeBaseFlowNode", {
|
|
3392
3400
|
enumerable: true,
|
|
3393
|
-
get: function () { return
|
|
3401
|
+
get: function () { return chunk7LCEP4X5_js.KnowledgeBaseFlowNode; }
|
|
3394
3402
|
});
|
|
3395
3403
|
Object.defineProperty(exports, "LOGIC_ICON_MAP", {
|
|
3396
3404
|
enumerable: true,
|
|
3397
|
-
get: function () { return
|
|
3405
|
+
get: function () { return chunk7LCEP4X5_js.LOGIC_ICON_MAP; }
|
|
3398
3406
|
});
|
|
3399
3407
|
Object.defineProperty(exports, "LOGIC_NODE_BADGE_COLORS", {
|
|
3400
3408
|
enumerable: true,
|
|
3401
|
-
get: function () { return
|
|
3409
|
+
get: function () { return chunk7LCEP4X5_js.LOGIC_NODE_BADGE_COLORS; }
|
|
3402
3410
|
});
|
|
3403
3411
|
Object.defineProperty(exports, "LOGIC_NODE_GRADIENTS", {
|
|
3404
3412
|
enumerable: true,
|
|
3405
|
-
get: function () { return
|
|
3413
|
+
get: function () { return chunk7LCEP4X5_js.LOGIC_NODE_GRADIENTS; }
|
|
3406
3414
|
});
|
|
3407
3415
|
Object.defineProperty(exports, "LOGIC_NODE_HANDLE_COLORS", {
|
|
3408
3416
|
enumerable: true,
|
|
3409
|
-
get: function () { return
|
|
3417
|
+
get: function () { return chunk7LCEP4X5_js.LOGIC_NODE_HANDLE_COLORS; }
|
|
3410
3418
|
});
|
|
3411
3419
|
Object.defineProperty(exports, "LangChainIcon", {
|
|
3412
3420
|
enumerable: true,
|
|
3413
|
-
get: function () { return
|
|
3421
|
+
get: function () { return chunk7LCEP4X5_js.LangChainIcon; }
|
|
3414
3422
|
});
|
|
3415
3423
|
Object.defineProperty(exports, "ListOperatorFlowNode", {
|
|
3416
3424
|
enumerable: true,
|
|
3417
|
-
get: function () { return
|
|
3425
|
+
get: function () { return chunk7LCEP4X5_js.ListOperatorFlowNode; }
|
|
3418
3426
|
});
|
|
3419
3427
|
Object.defineProperty(exports, "LogicNodeModal", {
|
|
3420
3428
|
enumerable: true,
|
|
3421
|
-
get: function () { return
|
|
3429
|
+
get: function () { return chunk7LCEP4X5_js.LogicNodeModal; }
|
|
3422
3430
|
});
|
|
3423
3431
|
Object.defineProperty(exports, "MINIMAP_NODE_COLORS", {
|
|
3424
3432
|
enumerable: true,
|
|
3425
|
-
get: function () { return
|
|
3433
|
+
get: function () { return chunk7LCEP4X5_js.MINIMAP_NODE_COLORS; }
|
|
3426
3434
|
});
|
|
3427
3435
|
Object.defineProperty(exports, "ModelProviderFlowNode", {
|
|
3428
3436
|
enumerable: true,
|
|
3429
|
-
get: function () { return
|
|
3437
|
+
get: function () { return chunk7LCEP4X5_js.ModelProviderFlowNode; }
|
|
3430
3438
|
});
|
|
3431
3439
|
Object.defineProperty(exports, "NODE_EXECUTION_ACCENT_COLORS", {
|
|
3432
3440
|
enumerable: true,
|
|
3433
|
-
get: function () { return
|
|
3441
|
+
get: function () { return chunk7LCEP4X5_js.NODE_EXECUTION_ACCENT_COLORS; }
|
|
3434
3442
|
});
|
|
3435
3443
|
Object.defineProperty(exports, "NodeCard", {
|
|
3436
3444
|
enumerable: true,
|
|
3437
|
-
get: function () { return
|
|
3445
|
+
get: function () { return chunk7LCEP4X5_js.NodeCard; }
|
|
3438
3446
|
});
|
|
3439
3447
|
Object.defineProperty(exports, "NodeContextMenu", {
|
|
3440
3448
|
enumerable: true,
|
|
3441
|
-
get: function () { return
|
|
3449
|
+
get: function () { return chunk7LCEP4X5_js.NodeContextMenu; }
|
|
3442
3450
|
});
|
|
3443
3451
|
Object.defineProperty(exports, "NoteFlowNode", {
|
|
3444
3452
|
enumerable: true,
|
|
3445
|
-
get: function () { return
|
|
3453
|
+
get: function () { return chunk7LCEP4X5_js.NoteFlowNode; }
|
|
3446
3454
|
});
|
|
3447
3455
|
Object.defineProperty(exports, "OpenAIIcon", {
|
|
3448
3456
|
enumerable: true,
|
|
3449
|
-
get: function () { return
|
|
3457
|
+
get: function () { return chunk7LCEP4X5_js.OpenAIIcon; }
|
|
3450
3458
|
});
|
|
3451
3459
|
Object.defineProperty(exports, "PanelContextMenu", {
|
|
3452
3460
|
enumerable: true,
|
|
3453
|
-
get: function () { return
|
|
3461
|
+
get: function () { return chunk7LCEP4X5_js.PanelContextMenu; }
|
|
3454
3462
|
});
|
|
3455
3463
|
Object.defineProperty(exports, "ParameterExtractorFlowNode", {
|
|
3456
3464
|
enumerable: true,
|
|
3457
|
-
get: function () { return
|
|
3465
|
+
get: function () { return chunk7LCEP4X5_js.ParameterExtractorFlowNode; }
|
|
3458
3466
|
});
|
|
3459
3467
|
Object.defineProperty(exports, "QuestionClassifierFlowNode", {
|
|
3460
3468
|
enumerable: true,
|
|
3461
|
-
get: function () { return
|
|
3469
|
+
get: function () { return chunk7LCEP4X5_js.QuestionClassifierFlowNode; }
|
|
3462
3470
|
});
|
|
3463
3471
|
Object.defineProperty(exports, "RuleFlowNode", {
|
|
3464
3472
|
enumerable: true,
|
|
3465
|
-
get: function () { return
|
|
3473
|
+
get: function () { return chunk7LCEP4X5_js.RuleFlowNode; }
|
|
3466
3474
|
});
|
|
3467
3475
|
Object.defineProperty(exports, "SelectionContextMenu", {
|
|
3468
3476
|
enumerable: true,
|
|
3469
|
-
get: function () { return
|
|
3477
|
+
get: function () { return chunk7LCEP4X5_js.SelectionContextMenu; }
|
|
3470
3478
|
});
|
|
3471
3479
|
Object.defineProperty(exports, "StartFlowNode", {
|
|
3472
3480
|
enumerable: true,
|
|
3473
|
-
get: function () { return
|
|
3481
|
+
get: function () { return chunk7LCEP4X5_js.StartFlowNode; }
|
|
3474
3482
|
});
|
|
3475
3483
|
Object.defineProperty(exports, "StrandsIcon", {
|
|
3476
3484
|
enumerable: true,
|
|
3477
|
-
get: function () { return
|
|
3485
|
+
get: function () { return chunk7LCEP4X5_js.StrandsIcon; }
|
|
3478
3486
|
});
|
|
3479
3487
|
Object.defineProperty(exports, "TemplateTransformFlowNode", {
|
|
3480
3488
|
enumerable: true,
|
|
3481
|
-
get: function () { return
|
|
3489
|
+
get: function () { return chunk7LCEP4X5_js.TemplateTransformFlowNode; }
|
|
3482
3490
|
});
|
|
3483
3491
|
Object.defineProperty(exports, "ToolFlowNode", {
|
|
3484
3492
|
enumerable: true,
|
|
3485
|
-
get: function () { return
|
|
3493
|
+
get: function () { return chunk7LCEP4X5_js.ToolFlowNode; }
|
|
3486
3494
|
});
|
|
3487
3495
|
Object.defineProperty(exports, "VariableAggregatorFlowNode", {
|
|
3488
3496
|
enumerable: true,
|
|
3489
|
-
get: function () { return
|
|
3497
|
+
get: function () { return chunk7LCEP4X5_js.VariableAggregatorFlowNode; }
|
|
3490
3498
|
});
|
|
3491
3499
|
Object.defineProperty(exports, "VariableAssignerFlowNode", {
|
|
3492
3500
|
enumerable: true,
|
|
3493
|
-
get: function () { return
|
|
3501
|
+
get: function () { return chunk7LCEP4X5_js.VariableAssignerFlowNode; }
|
|
3494
3502
|
});
|
|
3495
3503
|
Object.defineProperty(exports, "WorkflowBuilderProvider", {
|
|
3496
3504
|
enumerable: true,
|
|
3497
|
-
get: function () { return
|
|
3505
|
+
get: function () { return chunk7LCEP4X5_js.WorkflowBuilderProvider; }
|
|
3498
3506
|
});
|
|
3499
3507
|
Object.defineProperty(exports, "Workspace", {
|
|
3500
3508
|
enumerable: true,
|
|
3501
|
-
get: function () { return
|
|
3509
|
+
get: function () { return chunk7LCEP4X5_js.Workspace; }
|
|
3502
3510
|
});
|
|
3503
3511
|
Object.defineProperty(exports, "getCompatibleModels", {
|
|
3504
3512
|
enumerable: true,
|
|
3505
|
-
get: function () { return
|
|
3513
|
+
get: function () { return chunk7LCEP4X5_js.getCompatibleModels; }
|
|
3506
3514
|
});
|
|
3507
3515
|
Object.defineProperty(exports, "getDefaultFrameworkForModel", {
|
|
3508
3516
|
enumerable: true,
|
|
3509
|
-
get: function () { return
|
|
3517
|
+
get: function () { return chunk7LCEP4X5_js.getDefaultFrameworkForModel; }
|
|
3510
3518
|
});
|
|
3511
3519
|
Object.defineProperty(exports, "getEntityBadgeColor", {
|
|
3512
3520
|
enumerable: true,
|
|
3513
|
-
get: function () { return
|
|
3521
|
+
get: function () { return chunk7LCEP4X5_js.getEntityBadgeColor; }
|
|
3514
3522
|
});
|
|
3515
3523
|
Object.defineProperty(exports, "getEntityGradient", {
|
|
3516
3524
|
enumerable: true,
|
|
3517
|
-
get: function () { return
|
|
3525
|
+
get: function () { return chunk7LCEP4X5_js.getEntityGradient; }
|
|
3518
3526
|
});
|
|
3519
3527
|
Object.defineProperty(exports, "getEntityHandleColor", {
|
|
3520
3528
|
enumerable: true,
|
|
3521
|
-
get: function () { return
|
|
3529
|
+
get: function () { return chunk7LCEP4X5_js.getEntityHandleColor; }
|
|
3522
3530
|
});
|
|
3523
3531
|
Object.defineProperty(exports, "getEntityIcon", {
|
|
3524
3532
|
enumerable: true,
|
|
3525
|
-
get: function () { return
|
|
3533
|
+
get: function () { return chunk7LCEP4X5_js.getEntityIcon; }
|
|
3526
3534
|
});
|
|
3527
3535
|
Object.defineProperty(exports, "getEntityMinimapColor", {
|
|
3528
3536
|
enumerable: true,
|
|
3529
|
-
get: function () { return
|
|
3537
|
+
get: function () { return chunk7LCEP4X5_js.getEntityMinimapColor; }
|
|
3530
3538
|
});
|
|
3531
3539
|
Object.defineProperty(exports, "getFrameworkMeta", {
|
|
3532
3540
|
enumerable: true,
|
|
3533
|
-
get: function () { return
|
|
3541
|
+
get: function () { return chunk7LCEP4X5_js.getFrameworkMeta; }
|
|
3534
3542
|
});
|
|
3535
3543
|
Object.defineProperty(exports, "getNodeExecutionAccent", {
|
|
3536
3544
|
enumerable: true,
|
|
3537
|
-
get: function () { return
|
|
3545
|
+
get: function () { return chunk7LCEP4X5_js.getNodeExecutionAccent; }
|
|
3538
3546
|
});
|
|
3539
3547
|
Object.defineProperty(exports, "getNodeExecutionAccentRgb", {
|
|
3540
3548
|
enumerable: true,
|
|
3541
|
-
get: function () { return
|
|
3549
|
+
get: function () { return chunk7LCEP4X5_js.getNodeExecutionAccentRgb; }
|
|
3542
3550
|
});
|
|
3543
3551
|
Object.defineProperty(exports, "isModelCompatibleWithFramework", {
|
|
3544
3552
|
enumerable: true,
|
|
3545
|
-
get: function () { return
|
|
3553
|
+
get: function () { return chunk7LCEP4X5_js.isModelCompatibleWithFramework; }
|
|
3546
3554
|
});
|
|
3547
3555
|
Object.defineProperty(exports, "useModalStore", {
|
|
3548
3556
|
enumerable: true,
|
|
3549
|
-
get: function () { return
|
|
3557
|
+
get: function () { return chunk7LCEP4X5_js.useModalStore; }
|
|
3550
3558
|
});
|
|
3551
3559
|
Object.defineProperty(exports, "useWorkflowBuilderClient", {
|
|
3552
3560
|
enumerable: true,
|
|
3553
|
-
get: function () { return
|
|
3561
|
+
get: function () { return chunk7LCEP4X5_js.useWorkflowBuilderClient; }
|
|
3554
3562
|
});
|
|
3555
3563
|
Object.defineProperty(exports, "useWorkflowBuilderClientOptional", {
|
|
3556
3564
|
enumerable: true,
|
|
3557
|
-
get: function () { return
|
|
3565
|
+
get: function () { return chunk7LCEP4X5_js.useWorkflowBuilderClientOptional; }
|
|
3558
3566
|
});
|
|
3559
3567
|
Object.defineProperty(exports, "useWorkflowStore", {
|
|
3560
3568
|
enumerable: true,
|
|
3561
|
-
get: function () { return
|
|
3569
|
+
get: function () { return chunk7LCEP4X5_js.useWorkflowStore; }
|
|
3562
3570
|
});
|
|
3563
3571
|
Object.defineProperty(exports, "GraphNodeBadge", {
|
|
3564
3572
|
enumerable: true,
|