@datatechsolutions/ui 2.11.41 → 2.11.42
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 +145 -134
- package/dist/astrlabe/index.js.map +1 -1
- package/dist/astrlabe/index.mjs +16 -5
- package/dist/astrlabe/index.mjs.map +1 -1
- package/dist/astrlabe/workflow-canvas.js +4 -4
- package/dist/astrlabe/workflow-canvas.mjs +3 -3
- package/dist/{chunk-MDD6H63O.mjs → chunk-DNGI4ASL.mjs} +3 -3
- package/dist/{chunk-MDD6H63O.mjs.map → chunk-DNGI4ASL.mjs.map} +1 -1
- package/dist/{chunk-W7SNLP5J.mjs → chunk-HRQPV3H3.mjs} +16 -5
- package/dist/chunk-HRQPV3H3.mjs.map +1 -0
- package/dist/{chunk-2IOPJ5BM.js → chunk-KEUOCEOO.js} +3 -3
- package/dist/{chunk-2IOPJ5BM.js.map → chunk-KEUOCEOO.js.map} +1 -1
- package/dist/{chunk-XFYGRDN3.js → chunk-YI6QMBKC.js} +62 -51
- package/dist/chunk-YI6QMBKC.js.map +1 -0
- package/dist/index.js +718 -718
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
- package/dist/chunk-W7SNLP5J.mjs.map +0 -1
- package/dist/chunk-XFYGRDN3.js.map +0 -1
package/dist/astrlabe/index.js
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
|
|
4
4
|
require('../chunk-55H6WZQP.js');
|
|
5
5
|
var chunk3GE3MBUZ_js = require('../chunk-3GE3MBUZ.js');
|
|
6
|
-
var
|
|
7
|
-
var
|
|
8
|
-
require('../chunk-UZ3CMNUJ.js');
|
|
6
|
+
var chunkYI6QMBKC_js = require('../chunk-YI6QMBKC.js');
|
|
7
|
+
var chunkKEUOCEOO_js = require('../chunk-KEUOCEOO.js');
|
|
9
8
|
var chunkYXN2K77G_js = require('../chunk-YXN2K77G.js');
|
|
10
9
|
require('../chunk-S7KHTUHA.js');
|
|
10
|
+
require('../chunk-UZ3CMNUJ.js');
|
|
11
11
|
var chunkP4YYEM4B_js = require('../chunk-P4YYEM4B.js');
|
|
12
12
|
var chunkPWBWP5FJ_js = require('../chunk-PWBWP5FJ.js');
|
|
13
13
|
var react = require('react');
|
|
@@ -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 = chunkYI6QMBKC_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(chunkYI6QMBKC_js.FRAMEWORK_META);
|
|
363
363
|
const hasProviderConstraints = connectedProviderTypes.length > 0;
|
|
364
|
-
const compatibleModels =
|
|
364
|
+
const compatibleModels = chunkYI6QMBKC_js.getCompatibleModels(models, selectedFramework);
|
|
365
365
|
const handleFrameworkChange = react.useCallback((newFramework) => {
|
|
366
366
|
setSelectedFramework(newFramework);
|
|
367
|
-
if (!
|
|
368
|
-
const compatible =
|
|
367
|
+
if (!chunkYI6QMBKC_js.isModelCompatibleWithFramework(selectedModelId, newFramework)) {
|
|
368
|
+
const compatible = chunkYI6QMBKC_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 = chunkYI6QMBKC_js.FRAMEWORK_META[key];
|
|
380
380
|
const isSelected = key === selectedFramework;
|
|
381
|
-
const compatCount =
|
|
382
|
-
const isCompatibleWithProviders = !hasProviderConstraints ||
|
|
381
|
+
const compatCount = chunkYI6QMBKC_js.getCompatibleModels(models, key).length;
|
|
382
|
+
const isCompatibleWithProviders = !hasProviderConstraints || chunkYI6QMBKC_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 = chunkYI6QMBKC_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 = chunkYI6QMBKC_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) => chunkYI6QMBKC_js.isModelCompatibleWithFramework(m.id, agentFramework)
|
|
604
604
|
);
|
|
605
605
|
const incompatibleModels = providerModels.models.filter(
|
|
606
|
-
(m) => !
|
|
606
|
+
(m) => !chunkYI6QMBKC_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 = chunkYI6QMBKC_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
|
+
chunkKEUOCEOO_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 = chunkYI6QMBKC_js.useModalStore((s) => s.activeModal);
|
|
718
|
+
const agentData = chunkYI6QMBKC_js.useModalStore((s) => s.agentData);
|
|
719
|
+
const closeModal = chunkYI6QMBKC_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
|
+
chunkKEUOCEOO_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 = chunkYI6QMBKC_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 ?? chunkYI6QMBKC_js.CATEGORY_COLORS[categoryKey] ?? chunkYI6QMBKC_js.CATEGORY_COLORS.external;
|
|
976
|
+
const categoryPill = chunkYI6QMBKC_js.CATEGORY_PILL_COLORS[categoryKey] ?? chunkYI6QMBKC_js.CATEGORY_PILL_COLORS.external;
|
|
977
|
+
const IconComponent = chunkYI6QMBKC_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
|
+
chunkKEUOCEOO_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 ? `${chunkYI6QMBKC_js.CATEGORY_PILL_COLORS[cat] ?? chunkYI6QMBKC_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
|
+
chunkYI6QMBKC_js.WorkflowCanvas,
|
|
1130
1130
|
{
|
|
1131
1131
|
initialGraph,
|
|
1132
1132
|
agents: [],
|
|
@@ -1163,7 +1163,7 @@ function WorkspaceModal({
|
|
|
1163
1163
|
}) {
|
|
1164
1164
|
const resolvedSize = LEGACY_WIDTH_MAP[maxWidth] ?? maxWidth;
|
|
1165
1165
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1166
|
-
|
|
1166
|
+
chunkKEUOCEOO_js.GlassModal,
|
|
1167
1167
|
{
|
|
1168
1168
|
open,
|
|
1169
1169
|
onClose,
|
|
@@ -1184,9 +1184,9 @@ function WorkspaceModal({
|
|
|
1184
1184
|
}
|
|
1185
1185
|
function PipelineSettingsModal({ onSave }) {
|
|
1186
1186
|
const t = chunkYXN2K77G_js.useTranslations("agents.workflow");
|
|
1187
|
-
const activeModal =
|
|
1188
|
-
const data =
|
|
1189
|
-
const closeModal =
|
|
1187
|
+
const activeModal = chunkYI6QMBKC_js.useModalStore((s) => s.activeModal);
|
|
1188
|
+
const data = chunkYI6QMBKC_js.useModalStore((s) => s.pipelineSettingsData);
|
|
1189
|
+
const closeModal = chunkYI6QMBKC_js.useModalStore((s) => s.closeModal);
|
|
1190
1190
|
const open = activeModal === "pipeline-settings";
|
|
1191
1191
|
const [nameValue, setNameValue] = react.useState("");
|
|
1192
1192
|
const [descriptionValue, setDescriptionValue] = react.useState("");
|
|
@@ -1221,7 +1221,7 @@ function PipelineSettingsModal({ onSave }) {
|
|
|
1221
1221
|
}
|
|
1222
1222
|
),
|
|
1223
1223
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
1224
|
-
|
|
1224
|
+
chunkKEUOCEOO_js.Button,
|
|
1225
1225
|
{
|
|
1226
1226
|
type: "submit",
|
|
1227
1227
|
form: "pipeline-settings-form",
|
|
@@ -1236,7 +1236,7 @@ function PipelineSettingsModal({ onSave }) {
|
|
|
1236
1236
|
)
|
|
1237
1237
|
] });
|
|
1238
1238
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
1239
|
-
|
|
1239
|
+
chunkKEUOCEOO_js.GlassModal,
|
|
1240
1240
|
{
|
|
1241
1241
|
open,
|
|
1242
1242
|
onClose: closeModal,
|
|
@@ -1250,7 +1250,7 @@ function PipelineSettingsModal({ onSave }) {
|
|
|
1250
1250
|
onSubmit: handleSubmit,
|
|
1251
1251
|
children: /* @__PURE__ */ jsxRuntime.jsxs("form", { id: "pipeline-settings-form", onSubmit: handleSubmit, className: "space-y-6", children: [
|
|
1252
1252
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1253
|
-
|
|
1253
|
+
chunkKEUOCEOO_js.FormInput,
|
|
1254
1254
|
{
|
|
1255
1255
|
label: t("pipelineName"),
|
|
1256
1256
|
value: nameValue,
|
|
@@ -1260,7 +1260,7 @@ function PipelineSettingsModal({ onSave }) {
|
|
|
1260
1260
|
}
|
|
1261
1261
|
),
|
|
1262
1262
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1263
|
-
|
|
1263
|
+
chunkKEUOCEOO_js.FormTextarea,
|
|
1264
1264
|
{
|
|
1265
1265
|
label: t("pipelineDescription"),
|
|
1266
1266
|
value: descriptionValue,
|
|
@@ -1282,7 +1282,18 @@ var DATASOURCE_LOGOS = {
|
|
|
1282
1282
|
mysql: "/logos/datasources/mysql.svg",
|
|
1283
1283
|
clickhouse: "/logos/datasources/clickhouse.svg",
|
|
1284
1284
|
elasticsearch: "/logos/datasources/elasticsearch.svg",
|
|
1285
|
-
duckdb: "/logos/datasources/duckdb.svg"
|
|
1285
|
+
duckdb: "/logos/datasources/duckdb.svg",
|
|
1286
|
+
sqlite: "/logos/datasources/sqlite.svg",
|
|
1287
|
+
mariadb: "/logos/datasources/mariadb.svg",
|
|
1288
|
+
oracle: "/logos/datasources/oracle.svg",
|
|
1289
|
+
mssql: "/logos/datasources/mssql.svg",
|
|
1290
|
+
sqlserver: "/logos/datasources/mssql.svg",
|
|
1291
|
+
cassandra: "/logos/datasources/cassandra.svg",
|
|
1292
|
+
dynamodb: "/logos/datasources/dynamodb.svg",
|
|
1293
|
+
cockroach: "/logos/datasources/cockroachdb.svg",
|
|
1294
|
+
supabase: "/logos/datasources/supabase.svg",
|
|
1295
|
+
firebase: "/logos/datasources/firebase.svg",
|
|
1296
|
+
neo4j: "/logos/datasources/neo4j.svg"
|
|
1286
1297
|
};
|
|
1287
1298
|
function getDatasourceLogo(entityId) {
|
|
1288
1299
|
const lower = entityId.toLowerCase();
|
|
@@ -1394,8 +1405,8 @@ function CollapsibleSection({ title, icon, colorClass, defaultOpen = true, count
|
|
|
1394
1405
|
] });
|
|
1395
1406
|
}
|
|
1396
1407
|
function LogicNodeItemCard({ item, translationFunction }) {
|
|
1397
|
-
const IconComponent =
|
|
1398
|
-
const gradient =
|
|
1408
|
+
const IconComponent = chunkYI6QMBKC_js.LOGIC_ICON_MAP[item.nodeType];
|
|
1409
|
+
const gradient = chunkYI6QMBKC_js.LOGIC_NODE_GRADIENTS[item.nodeType] ?? "from-gray-400 to-gray-500";
|
|
1399
1410
|
const defaultConfig = chunkPWBWP5FJ_js.createDefaultLogicNodeConfig(item.nodeType);
|
|
1400
1411
|
const configJson = defaultConfig ? JSON.stringify(defaultConfig) : void 0;
|
|
1401
1412
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1561,7 +1572,7 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], mod
|
|
|
1561
1572
|
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "truncate text-[10px] text-gray-400 dark:text-gray-500", children: tool.category })
|
|
1562
1573
|
] }),
|
|
1563
1574
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1564
|
-
|
|
1575
|
+
chunkKEUOCEOO_js.ToggleSwitch,
|
|
1565
1576
|
{
|
|
1566
1577
|
checked: Boolean(tool.enabled),
|
|
1567
1578
|
onChange: () => {
|
|
@@ -1602,7 +1613,7 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], mod
|
|
|
1602
1613
|
] })
|
|
1603
1614
|
] }),
|
|
1604
1615
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1605
|
-
|
|
1616
|
+
chunkKEUOCEOO_js.ToggleSwitch,
|
|
1606
1617
|
{
|
|
1607
1618
|
checked: Boolean(rule.enabled),
|
|
1608
1619
|
onChange: () => {
|
|
@@ -1638,8 +1649,8 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], mod
|
|
|
1638
1649
|
limit: entity.defaultLimit
|
|
1639
1650
|
});
|
|
1640
1651
|
const dsLogo = getDatasourceLogo(entity.id);
|
|
1641
|
-
const EntityIcon =
|
|
1642
|
-
const entityGradient =
|
|
1652
|
+
const EntityIcon = chunkYI6QMBKC_js.getEntityIcon(entity.id);
|
|
1653
|
+
const entityGradient = chunkYI6QMBKC_js.getEntityGradient(entity.id);
|
|
1643
1654
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1644
1655
|
"div",
|
|
1645
1656
|
{
|
|
@@ -1659,7 +1670,7 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], mod
|
|
|
1659
1670
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
|
|
1660
1671
|
/* @__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" }),
|
|
1661
1672
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1662
|
-
|
|
1673
|
+
chunkKEUOCEOO_js.ToggleSwitch,
|
|
1663
1674
|
{
|
|
1664
1675
|
checked: true,
|
|
1665
1676
|
onChange: () => {
|
|
@@ -2036,9 +2047,9 @@ function formatDuration2(durationMs) {
|
|
|
2036
2047
|
}
|
|
2037
2048
|
function RunPanel({ open, onClose, onRun, onStop }) {
|
|
2038
2049
|
const translations = chunkYXN2K77G_js.useTranslations("agents.workflow.runPanel");
|
|
2039
|
-
const nodes =
|
|
2040
|
-
const isRunning =
|
|
2041
|
-
const nodeResults =
|
|
2050
|
+
const nodes = chunkYI6QMBKC_js.useWorkflowStore((state) => state.nodes);
|
|
2051
|
+
const isRunning = chunkYI6QMBKC_js.useWorkflowStore((state) => state.isRunning);
|
|
2052
|
+
const nodeResults = chunkYI6QMBKC_js.useWorkflowStore((state) => state.nodeResults);
|
|
2042
2053
|
const startNode = nodes.find((node) => node.type === "start");
|
|
2043
2054
|
const hasEndNode = nodes.some((node) => node.type === "end");
|
|
2044
2055
|
const hasValidStartConfig = Boolean(
|
|
@@ -2323,8 +2334,8 @@ function inferVariables(config, nodeType) {
|
|
|
2323
2334
|
}
|
|
2324
2335
|
function VariableInspector({ open, onClose }) {
|
|
2325
2336
|
const translations = chunkYXN2K77G_js.useTranslations("agents.workflow.variableInspector");
|
|
2326
|
-
const nodes =
|
|
2327
|
-
const edges =
|
|
2337
|
+
const nodes = chunkYI6QMBKC_js.useWorkflowStore((state) => state.nodes);
|
|
2338
|
+
const edges = chunkYI6QMBKC_js.useWorkflowStore((state) => state.edges);
|
|
2328
2339
|
const [expandedNodes, setExpandedNodes] = react.useState(/* @__PURE__ */ new Set());
|
|
2329
2340
|
const toggleNodeExpansion = react.useCallback((nodeId) => {
|
|
2330
2341
|
setExpandedNodes((current) => {
|
|
@@ -2386,8 +2397,8 @@ function VariableInspector({ open, onClose }) {
|
|
|
2386
2397
|
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-2 text-sm text-gray-500 dark:text-gray-400", children: translations("noNodes") })
|
|
2387
2398
|
] }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: "divide-y divide-gray-100 dark:divide-gray-800", children: nodeVariableEntries.map((entry) => {
|
|
2388
2399
|
const isExpanded = expandedNodes.has(entry.nodeId);
|
|
2389
|
-
const IconComponent =
|
|
2390
|
-
const gradient =
|
|
2400
|
+
const IconComponent = chunkYI6QMBKC_js.LOGIC_ICON_MAP[entry.nodeType];
|
|
2401
|
+
const gradient = chunkYI6QMBKC_js.LOGIC_NODE_GRADIENTS[entry.nodeType] ?? "from-gray-400 to-gray-500";
|
|
2391
2402
|
const inputVariables = entry.variables.filter((variable) => variable.direction === "input");
|
|
2392
2403
|
const outputVariables = entry.variables.filter((variable) => variable.direction === "output");
|
|
2393
2404
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { "data-testid": `variable-node-${entry.nodeId}`, children: [
|
|
@@ -2453,7 +2464,7 @@ function RunInputDialog({
|
|
|
2453
2464
|
onRun
|
|
2454
2465
|
}) {
|
|
2455
2466
|
const t = chunkYXN2K77G_js.useTranslations("agents.workflow.runInputDialog");
|
|
2456
|
-
const nodes =
|
|
2467
|
+
const nodes = chunkYI6QMBKC_js.useWorkflowStore((state) => state.nodes);
|
|
2457
2468
|
const [values, setValues] = react.useState({});
|
|
2458
2469
|
const inputVariableNames = react.useMemo(() => {
|
|
2459
2470
|
const storeStartNode = nodes.find((node) => node.type === "start");
|
|
@@ -2480,7 +2491,7 @@ function RunInputDialog({
|
|
|
2480
2491
|
}, [onClose]);
|
|
2481
2492
|
if (!open) return null;
|
|
2482
2493
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2483
|
-
|
|
2494
|
+
chunkKEUOCEOO_js.GlassModal,
|
|
2484
2495
|
{
|
|
2485
2496
|
open,
|
|
2486
2497
|
onClose: handleClose,
|
|
@@ -2491,7 +2502,7 @@ function RunInputDialog({
|
|
|
2491
2502
|
/* @__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: [
|
|
2492
2503
|
/* @__PURE__ */ jsxRuntime.jsx("label", { className: "mb-1 block text-xs font-medium text-gray-700 dark:text-gray-300", children: variableName }),
|
|
2493
2504
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2494
|
-
|
|
2505
|
+
chunkKEUOCEOO_js.Input,
|
|
2495
2506
|
{
|
|
2496
2507
|
value: values[variableName] ?? "",
|
|
2497
2508
|
onChange: (event) => handleValueChange(variableName, event.target.value),
|
|
@@ -2500,8 +2511,8 @@ function RunInputDialog({
|
|
|
2500
2511
|
)
|
|
2501
2512
|
] }, variableName)) }),
|
|
2502
2513
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mt-4 flex items-center justify-end gap-2", children: [
|
|
2503
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2504
|
-
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
2514
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunkKEUOCEOO_js.Button, { size: "sm", plain: true, onClick: handleClose, children: t("cancel") }),
|
|
2515
|
+
/* @__PURE__ */ jsxRuntime.jsxs(chunkKEUOCEOO_js.Button, { size: "sm", gradient: true, onClick: handleSubmit, children: [
|
|
2505
2516
|
/* @__PURE__ */ jsxRuntime.jsx(outline.PlayIcon, { className: "h-3.5 w-3.5", "data-slot": "icon" }),
|
|
2506
2517
|
t("run")
|
|
2507
2518
|
] })
|
|
@@ -2534,8 +2545,8 @@ function PreviewPanel({ open, onClose, workflowId, loadRuns }) {
|
|
|
2534
2545
|
const [isLoadingRuns, setIsLoadingRuns] = react.useState(false);
|
|
2535
2546
|
const [selectedRun, setSelectedRun] = react.useState(null);
|
|
2536
2547
|
const [selectedNode, setSelectedNode] = react.useState(null);
|
|
2537
|
-
const isRunning =
|
|
2538
|
-
const nodeResults =
|
|
2548
|
+
const isRunning = chunkYI6QMBKC_js.useWorkflowStore((state) => state.isRunning);
|
|
2549
|
+
const nodeResults = chunkYI6QMBKC_js.useWorkflowStore((state) => state.nodeResults);
|
|
2539
2550
|
const refreshRuns = react.useCallback(async () => {
|
|
2540
2551
|
setIsLoadingRuns(true);
|
|
2541
2552
|
try {
|
|
@@ -2691,7 +2702,7 @@ var AutoSaveWorkspace = react.memo(function AutoSaveWorkspace2({
|
|
|
2691
2702
|
onAutoSaveGraph(graph);
|
|
2692
2703
|
}, [onAutoSaveGraph, onGraphSnapshot]);
|
|
2693
2704
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2694
|
-
|
|
2705
|
+
chunkYI6QMBKC_js.Workspace,
|
|
2695
2706
|
{
|
|
2696
2707
|
...workspaceProps,
|
|
2697
2708
|
onGraphChange: handleGraphChange
|
|
@@ -2699,7 +2710,7 @@ var AutoSaveWorkspace = react.memo(function AutoSaveWorkspace2({
|
|
|
2699
2710
|
);
|
|
2700
2711
|
});
|
|
2701
2712
|
function DynamicIslandConfirm2(props) {
|
|
2702
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2713
|
+
return /* @__PURE__ */ jsxRuntime.jsx(chunkKEUOCEOO_js.DynamicIslandConfirm, { ...props });
|
|
2703
2714
|
}
|
|
2704
2715
|
var JSON_PREVIEW_LINE_LIMIT = 50;
|
|
2705
2716
|
function DslExportModal({ open, onClose, workflow, graph }) {
|
|
@@ -2753,7 +2764,7 @@ function DslExportModal({ open, onClose, workflow, graph }) {
|
|
|
2753
2764
|
}, [jsonString, workflow.name, workflow.version]);
|
|
2754
2765
|
if (!open) return null;
|
|
2755
2766
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2756
|
-
|
|
2767
|
+
chunkKEUOCEOO_js.GlassModal,
|
|
2757
2768
|
{
|
|
2758
2769
|
open,
|
|
2759
2770
|
onClose,
|
|
@@ -2795,7 +2806,7 @@ function DslExportModal({ open, onClose, workflow, graph }) {
|
|
|
2795
2806
|
] }),
|
|
2796
2807
|
/* @__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: [
|
|
2797
2808
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2798
|
-
|
|
2809
|
+
chunkKEUOCEOO_js.Button,
|
|
2799
2810
|
{
|
|
2800
2811
|
type: "button",
|
|
2801
2812
|
onClick: handleCopyToClipboard,
|
|
@@ -2812,7 +2823,7 @@ function DslExportModal({ open, onClose, workflow, graph }) {
|
|
|
2812
2823
|
}
|
|
2813
2824
|
),
|
|
2814
2825
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
2815
|
-
|
|
2826
|
+
chunkKEUOCEOO_js.Button,
|
|
2816
2827
|
{
|
|
2817
2828
|
type: "button",
|
|
2818
2829
|
onClick: handleDownloadJson,
|
|
@@ -2971,7 +2982,7 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
2971
2982
|
}, []);
|
|
2972
2983
|
if (!open) return null;
|
|
2973
2984
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2974
|
-
|
|
2985
|
+
chunkKEUOCEOO_js.GlassModal,
|
|
2975
2986
|
{
|
|
2976
2987
|
open,
|
|
2977
2988
|
onClose,
|
|
@@ -3011,7 +3022,7 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
3011
3022
|
) : /* @__PURE__ */ jsxRuntime.jsxs("div", { "data-testid": "import-validation-result", children: [
|
|
3012
3023
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mb-4 flex items-center justify-between", children: [
|
|
3013
3024
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-sm font-medium text-gray-700 dark:text-gray-300", children: fileName }),
|
|
3014
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3025
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunkKEUOCEOO_js.Button, { type: "button", plain: true, size: "sm", onClick: handleReset, children: translations("chooseAnother") })
|
|
3015
3026
|
] }),
|
|
3016
3027
|
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: [
|
|
3017
3028
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
|
|
@@ -3039,9 +3050,9 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
3039
3050
|
] })
|
|
3040
3051
|
] }) }),
|
|
3041
3052
|
/* @__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: [
|
|
3042
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3053
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunkKEUOCEOO_js.Button, { type: "button", onClick: onClose, outline: true, size: "sm", "data-testid": "import-cancel-button", children: translations("cancel") }),
|
|
3043
3054
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
3044
|
-
|
|
3055
|
+
chunkKEUOCEOO_js.Button,
|
|
3045
3056
|
{
|
|
3046
3057
|
type: "button",
|
|
3047
3058
|
onClick: handleImport,
|
|
@@ -3062,14 +3073,14 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
3062
3073
|
}
|
|
3063
3074
|
|
|
3064
3075
|
// src/astrlabe/store/selectors.ts
|
|
3065
|
-
var useCanUndo = () =>
|
|
3066
|
-
var useCanRedo = () =>
|
|
3067
|
-
var useHasCopied = () =>
|
|
3068
|
-
var useContextMenu = () =>
|
|
3069
|
-
var useEditingNodeId = () =>
|
|
3070
|
-
var useSelectedNodeCount = () =>
|
|
3071
|
-
var useIsRunning = () =>
|
|
3072
|
-
var useNodeResults = () =>
|
|
3076
|
+
var useCanUndo = () => chunkYI6QMBKC_js.useWorkflowStore((state) => state.past.length > 0);
|
|
3077
|
+
var useCanRedo = () => chunkYI6QMBKC_js.useWorkflowStore((state) => state.future.length > 0);
|
|
3078
|
+
var useHasCopied = () => chunkYI6QMBKC_js.useWorkflowStore((state) => state.clipboard !== null);
|
|
3079
|
+
var useContextMenu = () => chunkYI6QMBKC_js.useWorkflowStore((state) => state.contextMenu);
|
|
3080
|
+
var useEditingNodeId = () => chunkYI6QMBKC_js.useWorkflowStore((state) => state.editingNodeId);
|
|
3081
|
+
var useSelectedNodeCount = () => chunkYI6QMBKC_js.useWorkflowStore((state) => state.nodes.filter((node) => node.selected).length);
|
|
3082
|
+
var useIsRunning = () => chunkYI6QMBKC_js.useWorkflowStore((state) => state.isRunning);
|
|
3083
|
+
var useNodeResults = () => chunkYI6QMBKC_js.useWorkflowStore((state) => state.nodeResults);
|
|
3073
3084
|
var DEFAULT_MAX_HISTORY = 50;
|
|
3074
3085
|
function useUndoRedo(nodes, edges, setNodes, setEdges, maxHistory = DEFAULT_MAX_HISTORY) {
|
|
3075
3086
|
const pastRef = react.useRef([]);
|
|
@@ -3357,239 +3368,239 @@ Object.defineProperty(exports, "validateWorkflowGraph", {
|
|
|
3357
3368
|
});
|
|
3358
3369
|
Object.defineProperty(exports, "AgentFlowNode", {
|
|
3359
3370
|
enumerable: true,
|
|
3360
|
-
get: function () { return
|
|
3371
|
+
get: function () { return chunkYI6QMBKC_js.AgentFlowNode; }
|
|
3361
3372
|
});
|
|
3362
3373
|
Object.defineProperty(exports, "AgentToolFlowNode", {
|
|
3363
3374
|
enumerable: true,
|
|
3364
|
-
get: function () { return
|
|
3375
|
+
get: function () { return chunkYI6QMBKC_js.AgentToolFlowNode; }
|
|
3365
3376
|
});
|
|
3366
3377
|
Object.defineProperty(exports, "AnswerFlowNode", {
|
|
3367
3378
|
enumerable: true,
|
|
3368
|
-
get: function () { return
|
|
3379
|
+
get: function () { return chunkYI6QMBKC_js.AnswerFlowNode; }
|
|
3369
3380
|
});
|
|
3370
3381
|
Object.defineProperty(exports, "AnthropicIcon", {
|
|
3371
3382
|
enumerable: true,
|
|
3372
|
-
get: function () { return
|
|
3383
|
+
get: function () { return chunkYI6QMBKC_js.AnthropicIcon; }
|
|
3373
3384
|
});
|
|
3374
3385
|
Object.defineProperty(exports, "CodeFlowNode", {
|
|
3375
3386
|
enumerable: true,
|
|
3376
|
-
get: function () { return
|
|
3387
|
+
get: function () { return chunkYI6QMBKC_js.CodeFlowNode; }
|
|
3377
3388
|
});
|
|
3378
3389
|
Object.defineProperty(exports, "CrewAIIcon", {
|
|
3379
3390
|
enumerable: true,
|
|
3380
|
-
get: function () { return
|
|
3391
|
+
get: function () { return chunkYI6QMBKC_js.CrewAIIcon; }
|
|
3381
3392
|
});
|
|
3382
3393
|
Object.defineProperty(exports, "DocumentExtractorFlowNode", {
|
|
3383
3394
|
enumerable: true,
|
|
3384
|
-
get: function () { return
|
|
3395
|
+
get: function () { return chunkYI6QMBKC_js.DocumentExtractorFlowNode; }
|
|
3385
3396
|
});
|
|
3386
3397
|
Object.defineProperty(exports, "EndFlowNode", {
|
|
3387
3398
|
enumerable: true,
|
|
3388
|
-
get: function () { return
|
|
3399
|
+
get: function () { return chunkYI6QMBKC_js.EndFlowNode; }
|
|
3389
3400
|
});
|
|
3390
3401
|
Object.defineProperty(exports, "EntityFlowNode", {
|
|
3391
3402
|
enumerable: true,
|
|
3392
|
-
get: function () { return
|
|
3403
|
+
get: function () { return chunkYI6QMBKC_js.EntityFlowNode; }
|
|
3393
3404
|
});
|
|
3394
3405
|
Object.defineProperty(exports, "FRAMEWORK_META", {
|
|
3395
3406
|
enumerable: true,
|
|
3396
|
-
get: function () { return
|
|
3407
|
+
get: function () { return chunkYI6QMBKC_js.FRAMEWORK_META; }
|
|
3397
3408
|
});
|
|
3398
3409
|
Object.defineProperty(exports, "GoogleADKIcon", {
|
|
3399
3410
|
enumerable: true,
|
|
3400
|
-
get: function () { return
|
|
3411
|
+
get: function () { return chunkYI6QMBKC_js.GoogleADKIcon; }
|
|
3401
3412
|
});
|
|
3402
3413
|
Object.defineProperty(exports, "GroupFlowNode", {
|
|
3403
3414
|
enumerable: true,
|
|
3404
|
-
get: function () { return
|
|
3415
|
+
get: function () { return chunkYI6QMBKC_js.GroupFlowNode; }
|
|
3405
3416
|
});
|
|
3406
3417
|
Object.defineProperty(exports, "HttpRequestFlowNode", {
|
|
3407
3418
|
enumerable: true,
|
|
3408
|
-
get: function () { return
|
|
3419
|
+
get: function () { return chunkYI6QMBKC_js.HttpRequestFlowNode; }
|
|
3409
3420
|
});
|
|
3410
3421
|
Object.defineProperty(exports, "IfElseFlowNode", {
|
|
3411
3422
|
enumerable: true,
|
|
3412
|
-
get: function () { return
|
|
3423
|
+
get: function () { return chunkYI6QMBKC_js.IfElseFlowNode; }
|
|
3413
3424
|
});
|
|
3414
3425
|
Object.defineProperty(exports, "IterationFlowNode", {
|
|
3415
3426
|
enumerable: true,
|
|
3416
|
-
get: function () { return
|
|
3427
|
+
get: function () { return chunkYI6QMBKC_js.IterationFlowNode; }
|
|
3417
3428
|
});
|
|
3418
3429
|
Object.defineProperty(exports, "IterationStartFlowNode", {
|
|
3419
3430
|
enumerable: true,
|
|
3420
|
-
get: function () { return
|
|
3431
|
+
get: function () { return chunkYI6QMBKC_js.IterationStartFlowNode; }
|
|
3421
3432
|
});
|
|
3422
3433
|
Object.defineProperty(exports, "KnowledgeBaseFlowNode", {
|
|
3423
3434
|
enumerable: true,
|
|
3424
|
-
get: function () { return
|
|
3435
|
+
get: function () { return chunkYI6QMBKC_js.KnowledgeBaseFlowNode; }
|
|
3425
3436
|
});
|
|
3426
3437
|
Object.defineProperty(exports, "LOGIC_ICON_MAP", {
|
|
3427
3438
|
enumerable: true,
|
|
3428
|
-
get: function () { return
|
|
3439
|
+
get: function () { return chunkYI6QMBKC_js.LOGIC_ICON_MAP; }
|
|
3429
3440
|
});
|
|
3430
3441
|
Object.defineProperty(exports, "LOGIC_NODE_BADGE_COLORS", {
|
|
3431
3442
|
enumerable: true,
|
|
3432
|
-
get: function () { return
|
|
3443
|
+
get: function () { return chunkYI6QMBKC_js.LOGIC_NODE_BADGE_COLORS; }
|
|
3433
3444
|
});
|
|
3434
3445
|
Object.defineProperty(exports, "LOGIC_NODE_GRADIENTS", {
|
|
3435
3446
|
enumerable: true,
|
|
3436
|
-
get: function () { return
|
|
3447
|
+
get: function () { return chunkYI6QMBKC_js.LOGIC_NODE_GRADIENTS; }
|
|
3437
3448
|
});
|
|
3438
3449
|
Object.defineProperty(exports, "LOGIC_NODE_HANDLE_COLORS", {
|
|
3439
3450
|
enumerable: true,
|
|
3440
|
-
get: function () { return
|
|
3451
|
+
get: function () { return chunkYI6QMBKC_js.LOGIC_NODE_HANDLE_COLORS; }
|
|
3441
3452
|
});
|
|
3442
3453
|
Object.defineProperty(exports, "LangChainIcon", {
|
|
3443
3454
|
enumerable: true,
|
|
3444
|
-
get: function () { return
|
|
3455
|
+
get: function () { return chunkYI6QMBKC_js.LangChainIcon; }
|
|
3445
3456
|
});
|
|
3446
3457
|
Object.defineProperty(exports, "ListOperatorFlowNode", {
|
|
3447
3458
|
enumerable: true,
|
|
3448
|
-
get: function () { return
|
|
3459
|
+
get: function () { return chunkYI6QMBKC_js.ListOperatorFlowNode; }
|
|
3449
3460
|
});
|
|
3450
3461
|
Object.defineProperty(exports, "LogicNodeModal", {
|
|
3451
3462
|
enumerable: true,
|
|
3452
|
-
get: function () { return
|
|
3463
|
+
get: function () { return chunkYI6QMBKC_js.LogicNodeModal; }
|
|
3453
3464
|
});
|
|
3454
3465
|
Object.defineProperty(exports, "MINIMAP_NODE_COLORS", {
|
|
3455
3466
|
enumerable: true,
|
|
3456
|
-
get: function () { return
|
|
3467
|
+
get: function () { return chunkYI6QMBKC_js.MINIMAP_NODE_COLORS; }
|
|
3457
3468
|
});
|
|
3458
3469
|
Object.defineProperty(exports, "ModelProviderFlowNode", {
|
|
3459
3470
|
enumerable: true,
|
|
3460
|
-
get: function () { return
|
|
3471
|
+
get: function () { return chunkYI6QMBKC_js.ModelProviderFlowNode; }
|
|
3461
3472
|
});
|
|
3462
3473
|
Object.defineProperty(exports, "NODE_EXECUTION_ACCENT_COLORS", {
|
|
3463
3474
|
enumerable: true,
|
|
3464
|
-
get: function () { return
|
|
3475
|
+
get: function () { return chunkYI6QMBKC_js.NODE_EXECUTION_ACCENT_COLORS; }
|
|
3465
3476
|
});
|
|
3466
3477
|
Object.defineProperty(exports, "NodeCard", {
|
|
3467
3478
|
enumerable: true,
|
|
3468
|
-
get: function () { return
|
|
3479
|
+
get: function () { return chunkYI6QMBKC_js.NodeCard; }
|
|
3469
3480
|
});
|
|
3470
3481
|
Object.defineProperty(exports, "NodeContextMenu", {
|
|
3471
3482
|
enumerable: true,
|
|
3472
|
-
get: function () { return
|
|
3483
|
+
get: function () { return chunkYI6QMBKC_js.NodeContextMenu; }
|
|
3473
3484
|
});
|
|
3474
3485
|
Object.defineProperty(exports, "NoteFlowNode", {
|
|
3475
3486
|
enumerable: true,
|
|
3476
|
-
get: function () { return
|
|
3487
|
+
get: function () { return chunkYI6QMBKC_js.NoteFlowNode; }
|
|
3477
3488
|
});
|
|
3478
3489
|
Object.defineProperty(exports, "OpenAIIcon", {
|
|
3479
3490
|
enumerable: true,
|
|
3480
|
-
get: function () { return
|
|
3491
|
+
get: function () { return chunkYI6QMBKC_js.OpenAIIcon; }
|
|
3481
3492
|
});
|
|
3482
3493
|
Object.defineProperty(exports, "PanelContextMenu", {
|
|
3483
3494
|
enumerable: true,
|
|
3484
|
-
get: function () { return
|
|
3495
|
+
get: function () { return chunkYI6QMBKC_js.PanelContextMenu; }
|
|
3485
3496
|
});
|
|
3486
3497
|
Object.defineProperty(exports, "ParameterExtractorFlowNode", {
|
|
3487
3498
|
enumerable: true,
|
|
3488
|
-
get: function () { return
|
|
3499
|
+
get: function () { return chunkYI6QMBKC_js.ParameterExtractorFlowNode; }
|
|
3489
3500
|
});
|
|
3490
3501
|
Object.defineProperty(exports, "QuestionClassifierFlowNode", {
|
|
3491
3502
|
enumerable: true,
|
|
3492
|
-
get: function () { return
|
|
3503
|
+
get: function () { return chunkYI6QMBKC_js.QuestionClassifierFlowNode; }
|
|
3493
3504
|
});
|
|
3494
3505
|
Object.defineProperty(exports, "RuleFlowNode", {
|
|
3495
3506
|
enumerable: true,
|
|
3496
|
-
get: function () { return
|
|
3507
|
+
get: function () { return chunkYI6QMBKC_js.RuleFlowNode; }
|
|
3497
3508
|
});
|
|
3498
3509
|
Object.defineProperty(exports, "SelectionContextMenu", {
|
|
3499
3510
|
enumerable: true,
|
|
3500
|
-
get: function () { return
|
|
3511
|
+
get: function () { return chunkYI6QMBKC_js.SelectionContextMenu; }
|
|
3501
3512
|
});
|
|
3502
3513
|
Object.defineProperty(exports, "StartFlowNode", {
|
|
3503
3514
|
enumerable: true,
|
|
3504
|
-
get: function () { return
|
|
3515
|
+
get: function () { return chunkYI6QMBKC_js.StartFlowNode; }
|
|
3505
3516
|
});
|
|
3506
3517
|
Object.defineProperty(exports, "StrandsIcon", {
|
|
3507
3518
|
enumerable: true,
|
|
3508
|
-
get: function () { return
|
|
3519
|
+
get: function () { return chunkYI6QMBKC_js.StrandsIcon; }
|
|
3509
3520
|
});
|
|
3510
3521
|
Object.defineProperty(exports, "TemplateTransformFlowNode", {
|
|
3511
3522
|
enumerable: true,
|
|
3512
|
-
get: function () { return
|
|
3523
|
+
get: function () { return chunkYI6QMBKC_js.TemplateTransformFlowNode; }
|
|
3513
3524
|
});
|
|
3514
3525
|
Object.defineProperty(exports, "ToolFlowNode", {
|
|
3515
3526
|
enumerable: true,
|
|
3516
|
-
get: function () { return
|
|
3527
|
+
get: function () { return chunkYI6QMBKC_js.ToolFlowNode; }
|
|
3517
3528
|
});
|
|
3518
3529
|
Object.defineProperty(exports, "VariableAggregatorFlowNode", {
|
|
3519
3530
|
enumerable: true,
|
|
3520
|
-
get: function () { return
|
|
3531
|
+
get: function () { return chunkYI6QMBKC_js.VariableAggregatorFlowNode; }
|
|
3521
3532
|
});
|
|
3522
3533
|
Object.defineProperty(exports, "VariableAssignerFlowNode", {
|
|
3523
3534
|
enumerable: true,
|
|
3524
|
-
get: function () { return
|
|
3535
|
+
get: function () { return chunkYI6QMBKC_js.VariableAssignerFlowNode; }
|
|
3525
3536
|
});
|
|
3526
3537
|
Object.defineProperty(exports, "WorkflowBuilderProvider", {
|
|
3527
3538
|
enumerable: true,
|
|
3528
|
-
get: function () { return
|
|
3539
|
+
get: function () { return chunkYI6QMBKC_js.WorkflowBuilderProvider; }
|
|
3529
3540
|
});
|
|
3530
3541
|
Object.defineProperty(exports, "Workspace", {
|
|
3531
3542
|
enumerable: true,
|
|
3532
|
-
get: function () { return
|
|
3543
|
+
get: function () { return chunkYI6QMBKC_js.Workspace; }
|
|
3533
3544
|
});
|
|
3534
3545
|
Object.defineProperty(exports, "getCompatibleModels", {
|
|
3535
3546
|
enumerable: true,
|
|
3536
|
-
get: function () { return
|
|
3547
|
+
get: function () { return chunkYI6QMBKC_js.getCompatibleModels; }
|
|
3537
3548
|
});
|
|
3538
3549
|
Object.defineProperty(exports, "getDefaultFrameworkForModel", {
|
|
3539
3550
|
enumerable: true,
|
|
3540
|
-
get: function () { return
|
|
3551
|
+
get: function () { return chunkYI6QMBKC_js.getDefaultFrameworkForModel; }
|
|
3541
3552
|
});
|
|
3542
3553
|
Object.defineProperty(exports, "getEntityBadgeColor", {
|
|
3543
3554
|
enumerable: true,
|
|
3544
|
-
get: function () { return
|
|
3555
|
+
get: function () { return chunkYI6QMBKC_js.getEntityBadgeColor; }
|
|
3545
3556
|
});
|
|
3546
3557
|
Object.defineProperty(exports, "getEntityGradient", {
|
|
3547
3558
|
enumerable: true,
|
|
3548
|
-
get: function () { return
|
|
3559
|
+
get: function () { return chunkYI6QMBKC_js.getEntityGradient; }
|
|
3549
3560
|
});
|
|
3550
3561
|
Object.defineProperty(exports, "getEntityHandleColor", {
|
|
3551
3562
|
enumerable: true,
|
|
3552
|
-
get: function () { return
|
|
3563
|
+
get: function () { return chunkYI6QMBKC_js.getEntityHandleColor; }
|
|
3553
3564
|
});
|
|
3554
3565
|
Object.defineProperty(exports, "getEntityIcon", {
|
|
3555
3566
|
enumerable: true,
|
|
3556
|
-
get: function () { return
|
|
3567
|
+
get: function () { return chunkYI6QMBKC_js.getEntityIcon; }
|
|
3557
3568
|
});
|
|
3558
3569
|
Object.defineProperty(exports, "getEntityMinimapColor", {
|
|
3559
3570
|
enumerable: true,
|
|
3560
|
-
get: function () { return
|
|
3571
|
+
get: function () { return chunkYI6QMBKC_js.getEntityMinimapColor; }
|
|
3561
3572
|
});
|
|
3562
3573
|
Object.defineProperty(exports, "getFrameworkMeta", {
|
|
3563
3574
|
enumerable: true,
|
|
3564
|
-
get: function () { return
|
|
3575
|
+
get: function () { return chunkYI6QMBKC_js.getFrameworkMeta; }
|
|
3565
3576
|
});
|
|
3566
3577
|
Object.defineProperty(exports, "getNodeExecutionAccent", {
|
|
3567
3578
|
enumerable: true,
|
|
3568
|
-
get: function () { return
|
|
3579
|
+
get: function () { return chunkYI6QMBKC_js.getNodeExecutionAccent; }
|
|
3569
3580
|
});
|
|
3570
3581
|
Object.defineProperty(exports, "getNodeExecutionAccentRgb", {
|
|
3571
3582
|
enumerable: true,
|
|
3572
|
-
get: function () { return
|
|
3583
|
+
get: function () { return chunkYI6QMBKC_js.getNodeExecutionAccentRgb; }
|
|
3573
3584
|
});
|
|
3574
3585
|
Object.defineProperty(exports, "isModelCompatibleWithFramework", {
|
|
3575
3586
|
enumerable: true,
|
|
3576
|
-
get: function () { return
|
|
3587
|
+
get: function () { return chunkYI6QMBKC_js.isModelCompatibleWithFramework; }
|
|
3577
3588
|
});
|
|
3578
3589
|
Object.defineProperty(exports, "useModalStore", {
|
|
3579
3590
|
enumerable: true,
|
|
3580
|
-
get: function () { return
|
|
3591
|
+
get: function () { return chunkYI6QMBKC_js.useModalStore; }
|
|
3581
3592
|
});
|
|
3582
3593
|
Object.defineProperty(exports, "useWorkflowBuilderClient", {
|
|
3583
3594
|
enumerable: true,
|
|
3584
|
-
get: function () { return
|
|
3595
|
+
get: function () { return chunkYI6QMBKC_js.useWorkflowBuilderClient; }
|
|
3585
3596
|
});
|
|
3586
3597
|
Object.defineProperty(exports, "useWorkflowBuilderClientOptional", {
|
|
3587
3598
|
enumerable: true,
|
|
3588
|
-
get: function () { return
|
|
3599
|
+
get: function () { return chunkYI6QMBKC_js.useWorkflowBuilderClientOptional; }
|
|
3589
3600
|
});
|
|
3590
3601
|
Object.defineProperty(exports, "useWorkflowStore", {
|
|
3591
3602
|
enumerable: true,
|
|
3592
|
-
get: function () { return
|
|
3603
|
+
get: function () { return chunkYI6QMBKC_js.useWorkflowStore; }
|
|
3593
3604
|
});
|
|
3594
3605
|
Object.defineProperty(exports, "GraphNodeBadge", {
|
|
3595
3606
|
enumerable: true,
|