@datatechsolutions/ui 2.11.40 → 2.11.41
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 +147 -162
- package/dist/astrlabe/index.js.map +1 -1
- package/dist/astrlabe/index.mjs +18 -33
- 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-KEUOCEOO.js → chunk-2IOPJ5BM.js} +3 -3
- package/dist/{chunk-KEUOCEOO.js.map → chunk-2IOPJ5BM.js.map} +1 -1
- package/dist/{chunk-DNGI4ASL.mjs → chunk-MDD6H63O.mjs} +3 -3
- package/dist/{chunk-DNGI4ASL.mjs.map → chunk-MDD6H63O.mjs.map} +1 -1
- package/dist/{chunk-26YD2PZA.mjs → chunk-W7SNLP5J.mjs} +13 -40
- package/dist/chunk-W7SNLP5J.mjs.map +1 -0
- package/dist/{chunk-DKJEMRZF.js → chunk-XFYGRDN3.js} +58 -94
- package/dist/chunk-XFYGRDN3.js.map +1 -0
- package/dist/index.js +718 -718
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
- package/dist/anthropic-2KBFBWYV.svg +0 -1
- package/dist/aws-UCNBZKSZ.svg +0 -8
- package/dist/bigquery-NJ6CXI6A.svg +0 -3
- package/dist/chunk-26YD2PZA.mjs.map +0 -1
- package/dist/chunk-DKJEMRZF.js.map +0 -1
- package/dist/clickhouse-AX7XHQBT.svg +0 -1
- package/dist/duckdb-CXAYI3ZI.svg +0 -1
- package/dist/elasticsearch-OU7F6BUJ.svg +0 -3
- package/dist/google-gemini-CVCHE4E2.svg +0 -1
- package/dist/meta-EQ5RQLUY.svg +0 -1
- package/dist/mongodb-URDFTXPT.svg +0 -2
- package/dist/mysql-FVY4Z77S.svg +0 -2
- package/dist/openai-GLI5I2PL.svg +0 -2
- package/dist/postgres-HNTH3LSP.svg +0 -16
- package/dist/redis-ROJIVLPW.svg +0 -28
- package/dist/snowflake-VKC5HXDS.svg +0 -3
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
|
|
6
|
+
var chunkXFYGRDN3_js = require('../chunk-XFYGRDN3.js');
|
|
7
|
+
var chunk2IOPJ5BM_js = require('../chunk-2IOPJ5BM.js');
|
|
8
|
+
require('../chunk-UZ3CMNUJ.js');
|
|
8
9
|
var chunkYXN2K77G_js = require('../chunk-YXN2K77G.js');
|
|
9
10
|
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 = chunkXFYGRDN3_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(chunkXFYGRDN3_js.FRAMEWORK_META);
|
|
363
363
|
const hasProviderConstraints = connectedProviderTypes.length > 0;
|
|
364
|
-
const compatibleModels =
|
|
364
|
+
const compatibleModels = chunkXFYGRDN3_js.getCompatibleModels(models, selectedFramework);
|
|
365
365
|
const handleFrameworkChange = react.useCallback((newFramework) => {
|
|
366
366
|
setSelectedFramework(newFramework);
|
|
367
|
-
if (!
|
|
368
|
-
const compatible =
|
|
367
|
+
if (!chunkXFYGRDN3_js.isModelCompatibleWithFramework(selectedModelId, newFramework)) {
|
|
368
|
+
const compatible = chunkXFYGRDN3_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 = chunkXFYGRDN3_js.FRAMEWORK_META[key];
|
|
380
380
|
const isSelected = key === selectedFramework;
|
|
381
|
-
const compatCount =
|
|
382
|
-
const isCompatibleWithProviders = !hasProviderConstraints ||
|
|
381
|
+
const compatCount = chunkXFYGRDN3_js.getCompatibleModels(models, key).length;
|
|
382
|
+
const isCompatibleWithProviders = !hasProviderConstraints || chunkXFYGRDN3_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 = chunkXFYGRDN3_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 = chunkXFYGRDN3_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) => chunkXFYGRDN3_js.isModelCompatibleWithFramework(m.id, agentFramework)
|
|
604
604
|
);
|
|
605
605
|
const incompatibleModels = providerModels.models.filter(
|
|
606
|
-
(m) => !
|
|
606
|
+
(m) => !chunkXFYGRDN3_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 = chunkXFYGRDN3_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
|
+
chunk2IOPJ5BM_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 = chunkXFYGRDN3_js.useModalStore((s) => s.activeModal);
|
|
718
|
+
const agentData = chunkXFYGRDN3_js.useModalStore((s) => s.agentData);
|
|
719
|
+
const closeModal = chunkXFYGRDN3_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
|
+
chunk2IOPJ5BM_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 = chunkXFYGRDN3_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 ?? chunkXFYGRDN3_js.CATEGORY_COLORS[categoryKey] ?? chunkXFYGRDN3_js.CATEGORY_COLORS.external;
|
|
976
|
+
const categoryPill = chunkXFYGRDN3_js.CATEGORY_PILL_COLORS[categoryKey] ?? chunkXFYGRDN3_js.CATEGORY_PILL_COLORS.external;
|
|
977
|
+
const IconComponent = chunkXFYGRDN3_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
|
+
chunk2IOPJ5BM_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 ? `${chunkXFYGRDN3_js.CATEGORY_PILL_COLORS[cat] ?? chunkXFYGRDN3_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
|
+
chunkXFYGRDN3_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
|
+
chunk2IOPJ5BM_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 = chunkXFYGRDN3_js.useModalStore((s) => s.activeModal);
|
|
1188
|
+
const data = chunkXFYGRDN3_js.useModalStore((s) => s.pipelineSettingsData);
|
|
1189
|
+
const closeModal = chunkXFYGRDN3_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
|
+
chunk2IOPJ5BM_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
|
+
chunk2IOPJ5BM_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
|
+
chunk2IOPJ5BM_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
|
+
chunk2IOPJ5BM_js.FormTextarea,
|
|
1264
1264
|
{
|
|
1265
1265
|
label: t("pipelineDescription"),
|
|
1266
1266
|
value: descriptionValue,
|
|
@@ -1273,31 +1273,16 @@ function PipelineSettingsModal({ onSave }) {
|
|
|
1273
1273
|
}
|
|
1274
1274
|
);
|
|
1275
1275
|
}
|
|
1276
|
-
|
|
1277
|
-
// src/brand/logos/providers/anthropic.svg
|
|
1278
|
-
var anthropic_default = "../anthropic-2KBFBWYV.svg";
|
|
1279
|
-
|
|
1280
|
-
// src/brand/logos/providers/aws.svg
|
|
1281
|
-
var aws_default = "../aws-UCNBZKSZ.svg";
|
|
1282
|
-
|
|
1283
|
-
// src/brand/logos/providers/google-gemini.svg
|
|
1284
|
-
var google_gemini_default = "../google-gemini-CVCHE4E2.svg";
|
|
1285
|
-
|
|
1286
|
-
// src/brand/logos/providers/openai.svg
|
|
1287
|
-
var openai_default = "../openai-GLI5I2PL.svg";
|
|
1288
|
-
|
|
1289
|
-
// src/brand/logos/providers/meta.svg
|
|
1290
|
-
var meta_default = "../meta-EQ5RQLUY.svg";
|
|
1291
1276
|
var DATASOURCE_LOGOS = {
|
|
1292
|
-
bigquery:
|
|
1293
|
-
postgres:
|
|
1294
|
-
snowflake:
|
|
1295
|
-
mongodb:
|
|
1296
|
-
redis:
|
|
1297
|
-
mysql:
|
|
1298
|
-
clickhouse:
|
|
1299
|
-
elasticsearch:
|
|
1300
|
-
duckdb:
|
|
1277
|
+
bigquery: "/logos/datasources/bigquery.svg",
|
|
1278
|
+
postgres: "/logos/datasources/postgres.svg",
|
|
1279
|
+
snowflake: "/logos/datasources/snowflake.svg",
|
|
1280
|
+
mongodb: "/logos/datasources/mongodb.svg",
|
|
1281
|
+
redis: "/logos/datasources/redis.svg",
|
|
1282
|
+
mysql: "/logos/datasources/mysql.svg",
|
|
1283
|
+
clickhouse: "/logos/datasources/clickhouse.svg",
|
|
1284
|
+
elasticsearch: "/logos/datasources/elasticsearch.svg",
|
|
1285
|
+
duckdb: "/logos/datasources/duckdb.svg"
|
|
1301
1286
|
};
|
|
1302
1287
|
function getDatasourceLogo(entityId) {
|
|
1303
1288
|
const lower = entityId.toLowerCase();
|
|
@@ -1307,11 +1292,11 @@ function getDatasourceLogo(entityId) {
|
|
|
1307
1292
|
return null;
|
|
1308
1293
|
}
|
|
1309
1294
|
var PROVIDER_LOGOS2 = {
|
|
1310
|
-
anthropic:
|
|
1311
|
-
amazon:
|
|
1312
|
-
google:
|
|
1313
|
-
openai:
|
|
1314
|
-
meta:
|
|
1295
|
+
anthropic: "/logos/providers/anthropic.svg",
|
|
1296
|
+
amazon: "/logos/providers/aws.svg",
|
|
1297
|
+
google: "/logos/providers/google-gemini.svg",
|
|
1298
|
+
openai: "/logos/providers/openai.svg",
|
|
1299
|
+
meta: "/logos/providers/meta.svg"
|
|
1315
1300
|
};
|
|
1316
1301
|
function onDragStart(event, nodeType, entityId, label, config) {
|
|
1317
1302
|
event.dataTransfer.setData("nodeType", nodeType);
|
|
@@ -1409,8 +1394,8 @@ function CollapsibleSection({ title, icon, colorClass, defaultOpen = true, count
|
|
|
1409
1394
|
] });
|
|
1410
1395
|
}
|
|
1411
1396
|
function LogicNodeItemCard({ item, translationFunction }) {
|
|
1412
|
-
const IconComponent =
|
|
1413
|
-
const gradient =
|
|
1397
|
+
const IconComponent = chunkXFYGRDN3_js.LOGIC_ICON_MAP[item.nodeType];
|
|
1398
|
+
const gradient = chunkXFYGRDN3_js.LOGIC_NODE_GRADIENTS[item.nodeType] ?? "from-gray-400 to-gray-500";
|
|
1414
1399
|
const defaultConfig = chunkPWBWP5FJ_js.createDefaultLogicNodeConfig(item.nodeType);
|
|
1415
1400
|
const configJson = defaultConfig ? JSON.stringify(defaultConfig) : void 0;
|
|
1416
1401
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1576,7 +1561,7 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], mod
|
|
|
1576
1561
|
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "truncate text-[10px] text-gray-400 dark:text-gray-500", children: tool.category })
|
|
1577
1562
|
] }),
|
|
1578
1563
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1579
|
-
|
|
1564
|
+
chunk2IOPJ5BM_js.ToggleSwitch,
|
|
1580
1565
|
{
|
|
1581
1566
|
checked: Boolean(tool.enabled),
|
|
1582
1567
|
onChange: () => {
|
|
@@ -1617,7 +1602,7 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], mod
|
|
|
1617
1602
|
] })
|
|
1618
1603
|
] }),
|
|
1619
1604
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1620
|
-
|
|
1605
|
+
chunk2IOPJ5BM_js.ToggleSwitch,
|
|
1621
1606
|
{
|
|
1622
1607
|
checked: Boolean(rule.enabled),
|
|
1623
1608
|
onChange: () => {
|
|
@@ -1653,8 +1638,8 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], mod
|
|
|
1653
1638
|
limit: entity.defaultLimit
|
|
1654
1639
|
});
|
|
1655
1640
|
const dsLogo = getDatasourceLogo(entity.id);
|
|
1656
|
-
const EntityIcon =
|
|
1657
|
-
const entityGradient =
|
|
1641
|
+
const EntityIcon = chunkXFYGRDN3_js.getEntityIcon(entity.id);
|
|
1642
|
+
const entityGradient = chunkXFYGRDN3_js.getEntityGradient(entity.id);
|
|
1658
1643
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1659
1644
|
"div",
|
|
1660
1645
|
{
|
|
@@ -1674,7 +1659,7 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], mod
|
|
|
1674
1659
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
|
|
1675
1660
|
/* @__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" }),
|
|
1676
1661
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1677
|
-
|
|
1662
|
+
chunk2IOPJ5BM_js.ToggleSwitch,
|
|
1678
1663
|
{
|
|
1679
1664
|
checked: true,
|
|
1680
1665
|
onChange: () => {
|
|
@@ -2051,9 +2036,9 @@ function formatDuration2(durationMs) {
|
|
|
2051
2036
|
}
|
|
2052
2037
|
function RunPanel({ open, onClose, onRun, onStop }) {
|
|
2053
2038
|
const translations = chunkYXN2K77G_js.useTranslations("agents.workflow.runPanel");
|
|
2054
|
-
const nodes =
|
|
2055
|
-
const isRunning =
|
|
2056
|
-
const nodeResults =
|
|
2039
|
+
const nodes = chunkXFYGRDN3_js.useWorkflowStore((state) => state.nodes);
|
|
2040
|
+
const isRunning = chunkXFYGRDN3_js.useWorkflowStore((state) => state.isRunning);
|
|
2041
|
+
const nodeResults = chunkXFYGRDN3_js.useWorkflowStore((state) => state.nodeResults);
|
|
2057
2042
|
const startNode = nodes.find((node) => node.type === "start");
|
|
2058
2043
|
const hasEndNode = nodes.some((node) => node.type === "end");
|
|
2059
2044
|
const hasValidStartConfig = Boolean(
|
|
@@ -2338,8 +2323,8 @@ function inferVariables(config, nodeType) {
|
|
|
2338
2323
|
}
|
|
2339
2324
|
function VariableInspector({ open, onClose }) {
|
|
2340
2325
|
const translations = chunkYXN2K77G_js.useTranslations("agents.workflow.variableInspector");
|
|
2341
|
-
const nodes =
|
|
2342
|
-
const edges =
|
|
2326
|
+
const nodes = chunkXFYGRDN3_js.useWorkflowStore((state) => state.nodes);
|
|
2327
|
+
const edges = chunkXFYGRDN3_js.useWorkflowStore((state) => state.edges);
|
|
2343
2328
|
const [expandedNodes, setExpandedNodes] = react.useState(/* @__PURE__ */ new Set());
|
|
2344
2329
|
const toggleNodeExpansion = react.useCallback((nodeId) => {
|
|
2345
2330
|
setExpandedNodes((current) => {
|
|
@@ -2401,8 +2386,8 @@ function VariableInspector({ open, onClose }) {
|
|
|
2401
2386
|
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-2 text-sm text-gray-500 dark:text-gray-400", children: translations("noNodes") })
|
|
2402
2387
|
] }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: "divide-y divide-gray-100 dark:divide-gray-800", children: nodeVariableEntries.map((entry) => {
|
|
2403
2388
|
const isExpanded = expandedNodes.has(entry.nodeId);
|
|
2404
|
-
const IconComponent =
|
|
2405
|
-
const gradient =
|
|
2389
|
+
const IconComponent = chunkXFYGRDN3_js.LOGIC_ICON_MAP[entry.nodeType];
|
|
2390
|
+
const gradient = chunkXFYGRDN3_js.LOGIC_NODE_GRADIENTS[entry.nodeType] ?? "from-gray-400 to-gray-500";
|
|
2406
2391
|
const inputVariables = entry.variables.filter((variable) => variable.direction === "input");
|
|
2407
2392
|
const outputVariables = entry.variables.filter((variable) => variable.direction === "output");
|
|
2408
2393
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { "data-testid": `variable-node-${entry.nodeId}`, children: [
|
|
@@ -2468,7 +2453,7 @@ function RunInputDialog({
|
|
|
2468
2453
|
onRun
|
|
2469
2454
|
}) {
|
|
2470
2455
|
const t = chunkYXN2K77G_js.useTranslations("agents.workflow.runInputDialog");
|
|
2471
|
-
const nodes =
|
|
2456
|
+
const nodes = chunkXFYGRDN3_js.useWorkflowStore((state) => state.nodes);
|
|
2472
2457
|
const [values, setValues] = react.useState({});
|
|
2473
2458
|
const inputVariableNames = react.useMemo(() => {
|
|
2474
2459
|
const storeStartNode = nodes.find((node) => node.type === "start");
|
|
@@ -2495,7 +2480,7 @@ function RunInputDialog({
|
|
|
2495
2480
|
}, [onClose]);
|
|
2496
2481
|
if (!open) return null;
|
|
2497
2482
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
2498
|
-
|
|
2483
|
+
chunk2IOPJ5BM_js.GlassModal,
|
|
2499
2484
|
{
|
|
2500
2485
|
open,
|
|
2501
2486
|
onClose: handleClose,
|
|
@@ -2506,7 +2491,7 @@ function RunInputDialog({
|
|
|
2506
2491
|
/* @__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: [
|
|
2507
2492
|
/* @__PURE__ */ jsxRuntime.jsx("label", { className: "mb-1 block text-xs font-medium text-gray-700 dark:text-gray-300", children: variableName }),
|
|
2508
2493
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2509
|
-
|
|
2494
|
+
chunk2IOPJ5BM_js.Input,
|
|
2510
2495
|
{
|
|
2511
2496
|
value: values[variableName] ?? "",
|
|
2512
2497
|
onChange: (event) => handleValueChange(variableName, event.target.value),
|
|
@@ -2515,8 +2500,8 @@ function RunInputDialog({
|
|
|
2515
2500
|
)
|
|
2516
2501
|
] }, variableName)) }),
|
|
2517
2502
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mt-4 flex items-center justify-end gap-2", children: [
|
|
2518
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2519
|
-
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
2503
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunk2IOPJ5BM_js.Button, { size: "sm", plain: true, onClick: handleClose, children: t("cancel") }),
|
|
2504
|
+
/* @__PURE__ */ jsxRuntime.jsxs(chunk2IOPJ5BM_js.Button, { size: "sm", gradient: true, onClick: handleSubmit, children: [
|
|
2520
2505
|
/* @__PURE__ */ jsxRuntime.jsx(outline.PlayIcon, { className: "h-3.5 w-3.5", "data-slot": "icon" }),
|
|
2521
2506
|
t("run")
|
|
2522
2507
|
] })
|
|
@@ -2549,8 +2534,8 @@ function PreviewPanel({ open, onClose, workflowId, loadRuns }) {
|
|
|
2549
2534
|
const [isLoadingRuns, setIsLoadingRuns] = react.useState(false);
|
|
2550
2535
|
const [selectedRun, setSelectedRun] = react.useState(null);
|
|
2551
2536
|
const [selectedNode, setSelectedNode] = react.useState(null);
|
|
2552
|
-
const isRunning =
|
|
2553
|
-
const nodeResults =
|
|
2537
|
+
const isRunning = chunkXFYGRDN3_js.useWorkflowStore((state) => state.isRunning);
|
|
2538
|
+
const nodeResults = chunkXFYGRDN3_js.useWorkflowStore((state) => state.nodeResults);
|
|
2554
2539
|
const refreshRuns = react.useCallback(async () => {
|
|
2555
2540
|
setIsLoadingRuns(true);
|
|
2556
2541
|
try {
|
|
@@ -2706,7 +2691,7 @@ var AutoSaveWorkspace = react.memo(function AutoSaveWorkspace2({
|
|
|
2706
2691
|
onAutoSaveGraph(graph);
|
|
2707
2692
|
}, [onAutoSaveGraph, onGraphSnapshot]);
|
|
2708
2693
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2709
|
-
|
|
2694
|
+
chunkXFYGRDN3_js.Workspace,
|
|
2710
2695
|
{
|
|
2711
2696
|
...workspaceProps,
|
|
2712
2697
|
onGraphChange: handleGraphChange
|
|
@@ -2714,7 +2699,7 @@ var AutoSaveWorkspace = react.memo(function AutoSaveWorkspace2({
|
|
|
2714
2699
|
);
|
|
2715
2700
|
});
|
|
2716
2701
|
function DynamicIslandConfirm2(props) {
|
|
2717
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2702
|
+
return /* @__PURE__ */ jsxRuntime.jsx(chunk2IOPJ5BM_js.DynamicIslandConfirm, { ...props });
|
|
2718
2703
|
}
|
|
2719
2704
|
var JSON_PREVIEW_LINE_LIMIT = 50;
|
|
2720
2705
|
function DslExportModal({ open, onClose, workflow, graph }) {
|
|
@@ -2768,7 +2753,7 @@ function DslExportModal({ open, onClose, workflow, graph }) {
|
|
|
2768
2753
|
}, [jsonString, workflow.name, workflow.version]);
|
|
2769
2754
|
if (!open) return null;
|
|
2770
2755
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2771
|
-
|
|
2756
|
+
chunk2IOPJ5BM_js.GlassModal,
|
|
2772
2757
|
{
|
|
2773
2758
|
open,
|
|
2774
2759
|
onClose,
|
|
@@ -2810,7 +2795,7 @@ function DslExportModal({ open, onClose, workflow, graph }) {
|
|
|
2810
2795
|
] }),
|
|
2811
2796
|
/* @__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: [
|
|
2812
2797
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2813
|
-
|
|
2798
|
+
chunk2IOPJ5BM_js.Button,
|
|
2814
2799
|
{
|
|
2815
2800
|
type: "button",
|
|
2816
2801
|
onClick: handleCopyToClipboard,
|
|
@@ -2827,7 +2812,7 @@ function DslExportModal({ open, onClose, workflow, graph }) {
|
|
|
2827
2812
|
}
|
|
2828
2813
|
),
|
|
2829
2814
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
2830
|
-
|
|
2815
|
+
chunk2IOPJ5BM_js.Button,
|
|
2831
2816
|
{
|
|
2832
2817
|
type: "button",
|
|
2833
2818
|
onClick: handleDownloadJson,
|
|
@@ -2986,7 +2971,7 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
2986
2971
|
}, []);
|
|
2987
2972
|
if (!open) return null;
|
|
2988
2973
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2989
|
-
|
|
2974
|
+
chunk2IOPJ5BM_js.GlassModal,
|
|
2990
2975
|
{
|
|
2991
2976
|
open,
|
|
2992
2977
|
onClose,
|
|
@@ -3026,7 +3011,7 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
3026
3011
|
) : /* @__PURE__ */ jsxRuntime.jsxs("div", { "data-testid": "import-validation-result", children: [
|
|
3027
3012
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mb-4 flex items-center justify-between", children: [
|
|
3028
3013
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-sm font-medium text-gray-700 dark:text-gray-300", children: fileName }),
|
|
3029
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3014
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunk2IOPJ5BM_js.Button, { type: "button", plain: true, size: "sm", onClick: handleReset, children: translations("chooseAnother") })
|
|
3030
3015
|
] }),
|
|
3031
3016
|
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: [
|
|
3032
3017
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
|
|
@@ -3054,9 +3039,9 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
3054
3039
|
] })
|
|
3055
3040
|
] }) }),
|
|
3056
3041
|
/* @__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: [
|
|
3057
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3042
|
+
/* @__PURE__ */ jsxRuntime.jsx(chunk2IOPJ5BM_js.Button, { type: "button", onClick: onClose, outline: true, size: "sm", "data-testid": "import-cancel-button", children: translations("cancel") }),
|
|
3058
3043
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
3059
|
-
|
|
3044
|
+
chunk2IOPJ5BM_js.Button,
|
|
3060
3045
|
{
|
|
3061
3046
|
type: "button",
|
|
3062
3047
|
onClick: handleImport,
|
|
@@ -3077,14 +3062,14 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
3077
3062
|
}
|
|
3078
3063
|
|
|
3079
3064
|
// src/astrlabe/store/selectors.ts
|
|
3080
|
-
var useCanUndo = () =>
|
|
3081
|
-
var useCanRedo = () =>
|
|
3082
|
-
var useHasCopied = () =>
|
|
3083
|
-
var useContextMenu = () =>
|
|
3084
|
-
var useEditingNodeId = () =>
|
|
3085
|
-
var useSelectedNodeCount = () =>
|
|
3086
|
-
var useIsRunning = () =>
|
|
3087
|
-
var useNodeResults = () =>
|
|
3065
|
+
var useCanUndo = () => chunkXFYGRDN3_js.useWorkflowStore((state) => state.past.length > 0);
|
|
3066
|
+
var useCanRedo = () => chunkXFYGRDN3_js.useWorkflowStore((state) => state.future.length > 0);
|
|
3067
|
+
var useHasCopied = () => chunkXFYGRDN3_js.useWorkflowStore((state) => state.clipboard !== null);
|
|
3068
|
+
var useContextMenu = () => chunkXFYGRDN3_js.useWorkflowStore((state) => state.contextMenu);
|
|
3069
|
+
var useEditingNodeId = () => chunkXFYGRDN3_js.useWorkflowStore((state) => state.editingNodeId);
|
|
3070
|
+
var useSelectedNodeCount = () => chunkXFYGRDN3_js.useWorkflowStore((state) => state.nodes.filter((node) => node.selected).length);
|
|
3071
|
+
var useIsRunning = () => chunkXFYGRDN3_js.useWorkflowStore((state) => state.isRunning);
|
|
3072
|
+
var useNodeResults = () => chunkXFYGRDN3_js.useWorkflowStore((state) => state.nodeResults);
|
|
3088
3073
|
var DEFAULT_MAX_HISTORY = 50;
|
|
3089
3074
|
function useUndoRedo(nodes, edges, setNodes, setEdges, maxHistory = DEFAULT_MAX_HISTORY) {
|
|
3090
3075
|
const pastRef = react.useRef([]);
|
|
@@ -3372,239 +3357,239 @@ Object.defineProperty(exports, "validateWorkflowGraph", {
|
|
|
3372
3357
|
});
|
|
3373
3358
|
Object.defineProperty(exports, "AgentFlowNode", {
|
|
3374
3359
|
enumerable: true,
|
|
3375
|
-
get: function () { return
|
|
3360
|
+
get: function () { return chunkXFYGRDN3_js.AgentFlowNode; }
|
|
3376
3361
|
});
|
|
3377
3362
|
Object.defineProperty(exports, "AgentToolFlowNode", {
|
|
3378
3363
|
enumerable: true,
|
|
3379
|
-
get: function () { return
|
|
3364
|
+
get: function () { return chunkXFYGRDN3_js.AgentToolFlowNode; }
|
|
3380
3365
|
});
|
|
3381
3366
|
Object.defineProperty(exports, "AnswerFlowNode", {
|
|
3382
3367
|
enumerable: true,
|
|
3383
|
-
get: function () { return
|
|
3368
|
+
get: function () { return chunkXFYGRDN3_js.AnswerFlowNode; }
|
|
3384
3369
|
});
|
|
3385
3370
|
Object.defineProperty(exports, "AnthropicIcon", {
|
|
3386
3371
|
enumerable: true,
|
|
3387
|
-
get: function () { return
|
|
3372
|
+
get: function () { return chunkXFYGRDN3_js.AnthropicIcon; }
|
|
3388
3373
|
});
|
|
3389
3374
|
Object.defineProperty(exports, "CodeFlowNode", {
|
|
3390
3375
|
enumerable: true,
|
|
3391
|
-
get: function () { return
|
|
3376
|
+
get: function () { return chunkXFYGRDN3_js.CodeFlowNode; }
|
|
3392
3377
|
});
|
|
3393
3378
|
Object.defineProperty(exports, "CrewAIIcon", {
|
|
3394
3379
|
enumerable: true,
|
|
3395
|
-
get: function () { return
|
|
3380
|
+
get: function () { return chunkXFYGRDN3_js.CrewAIIcon; }
|
|
3396
3381
|
});
|
|
3397
3382
|
Object.defineProperty(exports, "DocumentExtractorFlowNode", {
|
|
3398
3383
|
enumerable: true,
|
|
3399
|
-
get: function () { return
|
|
3384
|
+
get: function () { return chunkXFYGRDN3_js.DocumentExtractorFlowNode; }
|
|
3400
3385
|
});
|
|
3401
3386
|
Object.defineProperty(exports, "EndFlowNode", {
|
|
3402
3387
|
enumerable: true,
|
|
3403
|
-
get: function () { return
|
|
3388
|
+
get: function () { return chunkXFYGRDN3_js.EndFlowNode; }
|
|
3404
3389
|
});
|
|
3405
3390
|
Object.defineProperty(exports, "EntityFlowNode", {
|
|
3406
3391
|
enumerable: true,
|
|
3407
|
-
get: function () { return
|
|
3392
|
+
get: function () { return chunkXFYGRDN3_js.EntityFlowNode; }
|
|
3408
3393
|
});
|
|
3409
3394
|
Object.defineProperty(exports, "FRAMEWORK_META", {
|
|
3410
3395
|
enumerable: true,
|
|
3411
|
-
get: function () { return
|
|
3396
|
+
get: function () { return chunkXFYGRDN3_js.FRAMEWORK_META; }
|
|
3412
3397
|
});
|
|
3413
3398
|
Object.defineProperty(exports, "GoogleADKIcon", {
|
|
3414
3399
|
enumerable: true,
|
|
3415
|
-
get: function () { return
|
|
3400
|
+
get: function () { return chunkXFYGRDN3_js.GoogleADKIcon; }
|
|
3416
3401
|
});
|
|
3417
3402
|
Object.defineProperty(exports, "GroupFlowNode", {
|
|
3418
3403
|
enumerable: true,
|
|
3419
|
-
get: function () { return
|
|
3404
|
+
get: function () { return chunkXFYGRDN3_js.GroupFlowNode; }
|
|
3420
3405
|
});
|
|
3421
3406
|
Object.defineProperty(exports, "HttpRequestFlowNode", {
|
|
3422
3407
|
enumerable: true,
|
|
3423
|
-
get: function () { return
|
|
3408
|
+
get: function () { return chunkXFYGRDN3_js.HttpRequestFlowNode; }
|
|
3424
3409
|
});
|
|
3425
3410
|
Object.defineProperty(exports, "IfElseFlowNode", {
|
|
3426
3411
|
enumerable: true,
|
|
3427
|
-
get: function () { return
|
|
3412
|
+
get: function () { return chunkXFYGRDN3_js.IfElseFlowNode; }
|
|
3428
3413
|
});
|
|
3429
3414
|
Object.defineProperty(exports, "IterationFlowNode", {
|
|
3430
3415
|
enumerable: true,
|
|
3431
|
-
get: function () { return
|
|
3416
|
+
get: function () { return chunkXFYGRDN3_js.IterationFlowNode; }
|
|
3432
3417
|
});
|
|
3433
3418
|
Object.defineProperty(exports, "IterationStartFlowNode", {
|
|
3434
3419
|
enumerable: true,
|
|
3435
|
-
get: function () { return
|
|
3420
|
+
get: function () { return chunkXFYGRDN3_js.IterationStartFlowNode; }
|
|
3436
3421
|
});
|
|
3437
3422
|
Object.defineProperty(exports, "KnowledgeBaseFlowNode", {
|
|
3438
3423
|
enumerable: true,
|
|
3439
|
-
get: function () { return
|
|
3424
|
+
get: function () { return chunkXFYGRDN3_js.KnowledgeBaseFlowNode; }
|
|
3440
3425
|
});
|
|
3441
3426
|
Object.defineProperty(exports, "LOGIC_ICON_MAP", {
|
|
3442
3427
|
enumerable: true,
|
|
3443
|
-
get: function () { return
|
|
3428
|
+
get: function () { return chunkXFYGRDN3_js.LOGIC_ICON_MAP; }
|
|
3444
3429
|
});
|
|
3445
3430
|
Object.defineProperty(exports, "LOGIC_NODE_BADGE_COLORS", {
|
|
3446
3431
|
enumerable: true,
|
|
3447
|
-
get: function () { return
|
|
3432
|
+
get: function () { return chunkXFYGRDN3_js.LOGIC_NODE_BADGE_COLORS; }
|
|
3448
3433
|
});
|
|
3449
3434
|
Object.defineProperty(exports, "LOGIC_NODE_GRADIENTS", {
|
|
3450
3435
|
enumerable: true,
|
|
3451
|
-
get: function () { return
|
|
3436
|
+
get: function () { return chunkXFYGRDN3_js.LOGIC_NODE_GRADIENTS; }
|
|
3452
3437
|
});
|
|
3453
3438
|
Object.defineProperty(exports, "LOGIC_NODE_HANDLE_COLORS", {
|
|
3454
3439
|
enumerable: true,
|
|
3455
|
-
get: function () { return
|
|
3440
|
+
get: function () { return chunkXFYGRDN3_js.LOGIC_NODE_HANDLE_COLORS; }
|
|
3456
3441
|
});
|
|
3457
3442
|
Object.defineProperty(exports, "LangChainIcon", {
|
|
3458
3443
|
enumerable: true,
|
|
3459
|
-
get: function () { return
|
|
3444
|
+
get: function () { return chunkXFYGRDN3_js.LangChainIcon; }
|
|
3460
3445
|
});
|
|
3461
3446
|
Object.defineProperty(exports, "ListOperatorFlowNode", {
|
|
3462
3447
|
enumerable: true,
|
|
3463
|
-
get: function () { return
|
|
3448
|
+
get: function () { return chunkXFYGRDN3_js.ListOperatorFlowNode; }
|
|
3464
3449
|
});
|
|
3465
3450
|
Object.defineProperty(exports, "LogicNodeModal", {
|
|
3466
3451
|
enumerable: true,
|
|
3467
|
-
get: function () { return
|
|
3452
|
+
get: function () { return chunkXFYGRDN3_js.LogicNodeModal; }
|
|
3468
3453
|
});
|
|
3469
3454
|
Object.defineProperty(exports, "MINIMAP_NODE_COLORS", {
|
|
3470
3455
|
enumerable: true,
|
|
3471
|
-
get: function () { return
|
|
3456
|
+
get: function () { return chunkXFYGRDN3_js.MINIMAP_NODE_COLORS; }
|
|
3472
3457
|
});
|
|
3473
3458
|
Object.defineProperty(exports, "ModelProviderFlowNode", {
|
|
3474
3459
|
enumerable: true,
|
|
3475
|
-
get: function () { return
|
|
3460
|
+
get: function () { return chunkXFYGRDN3_js.ModelProviderFlowNode; }
|
|
3476
3461
|
});
|
|
3477
3462
|
Object.defineProperty(exports, "NODE_EXECUTION_ACCENT_COLORS", {
|
|
3478
3463
|
enumerable: true,
|
|
3479
|
-
get: function () { return
|
|
3464
|
+
get: function () { return chunkXFYGRDN3_js.NODE_EXECUTION_ACCENT_COLORS; }
|
|
3480
3465
|
});
|
|
3481
3466
|
Object.defineProperty(exports, "NodeCard", {
|
|
3482
3467
|
enumerable: true,
|
|
3483
|
-
get: function () { return
|
|
3468
|
+
get: function () { return chunkXFYGRDN3_js.NodeCard; }
|
|
3484
3469
|
});
|
|
3485
3470
|
Object.defineProperty(exports, "NodeContextMenu", {
|
|
3486
3471
|
enumerable: true,
|
|
3487
|
-
get: function () { return
|
|
3472
|
+
get: function () { return chunkXFYGRDN3_js.NodeContextMenu; }
|
|
3488
3473
|
});
|
|
3489
3474
|
Object.defineProperty(exports, "NoteFlowNode", {
|
|
3490
3475
|
enumerable: true,
|
|
3491
|
-
get: function () { return
|
|
3476
|
+
get: function () { return chunkXFYGRDN3_js.NoteFlowNode; }
|
|
3492
3477
|
});
|
|
3493
3478
|
Object.defineProperty(exports, "OpenAIIcon", {
|
|
3494
3479
|
enumerable: true,
|
|
3495
|
-
get: function () { return
|
|
3480
|
+
get: function () { return chunkXFYGRDN3_js.OpenAIIcon; }
|
|
3496
3481
|
});
|
|
3497
3482
|
Object.defineProperty(exports, "PanelContextMenu", {
|
|
3498
3483
|
enumerable: true,
|
|
3499
|
-
get: function () { return
|
|
3484
|
+
get: function () { return chunkXFYGRDN3_js.PanelContextMenu; }
|
|
3500
3485
|
});
|
|
3501
3486
|
Object.defineProperty(exports, "ParameterExtractorFlowNode", {
|
|
3502
3487
|
enumerable: true,
|
|
3503
|
-
get: function () { return
|
|
3488
|
+
get: function () { return chunkXFYGRDN3_js.ParameterExtractorFlowNode; }
|
|
3504
3489
|
});
|
|
3505
3490
|
Object.defineProperty(exports, "QuestionClassifierFlowNode", {
|
|
3506
3491
|
enumerable: true,
|
|
3507
|
-
get: function () { return
|
|
3492
|
+
get: function () { return chunkXFYGRDN3_js.QuestionClassifierFlowNode; }
|
|
3508
3493
|
});
|
|
3509
3494
|
Object.defineProperty(exports, "RuleFlowNode", {
|
|
3510
3495
|
enumerable: true,
|
|
3511
|
-
get: function () { return
|
|
3496
|
+
get: function () { return chunkXFYGRDN3_js.RuleFlowNode; }
|
|
3512
3497
|
});
|
|
3513
3498
|
Object.defineProperty(exports, "SelectionContextMenu", {
|
|
3514
3499
|
enumerable: true,
|
|
3515
|
-
get: function () { return
|
|
3500
|
+
get: function () { return chunkXFYGRDN3_js.SelectionContextMenu; }
|
|
3516
3501
|
});
|
|
3517
3502
|
Object.defineProperty(exports, "StartFlowNode", {
|
|
3518
3503
|
enumerable: true,
|
|
3519
|
-
get: function () { return
|
|
3504
|
+
get: function () { return chunkXFYGRDN3_js.StartFlowNode; }
|
|
3520
3505
|
});
|
|
3521
3506
|
Object.defineProperty(exports, "StrandsIcon", {
|
|
3522
3507
|
enumerable: true,
|
|
3523
|
-
get: function () { return
|
|
3508
|
+
get: function () { return chunkXFYGRDN3_js.StrandsIcon; }
|
|
3524
3509
|
});
|
|
3525
3510
|
Object.defineProperty(exports, "TemplateTransformFlowNode", {
|
|
3526
3511
|
enumerable: true,
|
|
3527
|
-
get: function () { return
|
|
3512
|
+
get: function () { return chunkXFYGRDN3_js.TemplateTransformFlowNode; }
|
|
3528
3513
|
});
|
|
3529
3514
|
Object.defineProperty(exports, "ToolFlowNode", {
|
|
3530
3515
|
enumerable: true,
|
|
3531
|
-
get: function () { return
|
|
3516
|
+
get: function () { return chunkXFYGRDN3_js.ToolFlowNode; }
|
|
3532
3517
|
});
|
|
3533
3518
|
Object.defineProperty(exports, "VariableAggregatorFlowNode", {
|
|
3534
3519
|
enumerable: true,
|
|
3535
|
-
get: function () { return
|
|
3520
|
+
get: function () { return chunkXFYGRDN3_js.VariableAggregatorFlowNode; }
|
|
3536
3521
|
});
|
|
3537
3522
|
Object.defineProperty(exports, "VariableAssignerFlowNode", {
|
|
3538
3523
|
enumerable: true,
|
|
3539
|
-
get: function () { return
|
|
3524
|
+
get: function () { return chunkXFYGRDN3_js.VariableAssignerFlowNode; }
|
|
3540
3525
|
});
|
|
3541
3526
|
Object.defineProperty(exports, "WorkflowBuilderProvider", {
|
|
3542
3527
|
enumerable: true,
|
|
3543
|
-
get: function () { return
|
|
3528
|
+
get: function () { return chunkXFYGRDN3_js.WorkflowBuilderProvider; }
|
|
3544
3529
|
});
|
|
3545
3530
|
Object.defineProperty(exports, "Workspace", {
|
|
3546
3531
|
enumerable: true,
|
|
3547
|
-
get: function () { return
|
|
3532
|
+
get: function () { return chunkXFYGRDN3_js.Workspace; }
|
|
3548
3533
|
});
|
|
3549
3534
|
Object.defineProperty(exports, "getCompatibleModels", {
|
|
3550
3535
|
enumerable: true,
|
|
3551
|
-
get: function () { return
|
|
3536
|
+
get: function () { return chunkXFYGRDN3_js.getCompatibleModels; }
|
|
3552
3537
|
});
|
|
3553
3538
|
Object.defineProperty(exports, "getDefaultFrameworkForModel", {
|
|
3554
3539
|
enumerable: true,
|
|
3555
|
-
get: function () { return
|
|
3540
|
+
get: function () { return chunkXFYGRDN3_js.getDefaultFrameworkForModel; }
|
|
3556
3541
|
});
|
|
3557
3542
|
Object.defineProperty(exports, "getEntityBadgeColor", {
|
|
3558
3543
|
enumerable: true,
|
|
3559
|
-
get: function () { return
|
|
3544
|
+
get: function () { return chunkXFYGRDN3_js.getEntityBadgeColor; }
|
|
3560
3545
|
});
|
|
3561
3546
|
Object.defineProperty(exports, "getEntityGradient", {
|
|
3562
3547
|
enumerable: true,
|
|
3563
|
-
get: function () { return
|
|
3548
|
+
get: function () { return chunkXFYGRDN3_js.getEntityGradient; }
|
|
3564
3549
|
});
|
|
3565
3550
|
Object.defineProperty(exports, "getEntityHandleColor", {
|
|
3566
3551
|
enumerable: true,
|
|
3567
|
-
get: function () { return
|
|
3552
|
+
get: function () { return chunkXFYGRDN3_js.getEntityHandleColor; }
|
|
3568
3553
|
});
|
|
3569
3554
|
Object.defineProperty(exports, "getEntityIcon", {
|
|
3570
3555
|
enumerable: true,
|
|
3571
|
-
get: function () { return
|
|
3556
|
+
get: function () { return chunkXFYGRDN3_js.getEntityIcon; }
|
|
3572
3557
|
});
|
|
3573
3558
|
Object.defineProperty(exports, "getEntityMinimapColor", {
|
|
3574
3559
|
enumerable: true,
|
|
3575
|
-
get: function () { return
|
|
3560
|
+
get: function () { return chunkXFYGRDN3_js.getEntityMinimapColor; }
|
|
3576
3561
|
});
|
|
3577
3562
|
Object.defineProperty(exports, "getFrameworkMeta", {
|
|
3578
3563
|
enumerable: true,
|
|
3579
|
-
get: function () { return
|
|
3564
|
+
get: function () { return chunkXFYGRDN3_js.getFrameworkMeta; }
|
|
3580
3565
|
});
|
|
3581
3566
|
Object.defineProperty(exports, "getNodeExecutionAccent", {
|
|
3582
3567
|
enumerable: true,
|
|
3583
|
-
get: function () { return
|
|
3568
|
+
get: function () { return chunkXFYGRDN3_js.getNodeExecutionAccent; }
|
|
3584
3569
|
});
|
|
3585
3570
|
Object.defineProperty(exports, "getNodeExecutionAccentRgb", {
|
|
3586
3571
|
enumerable: true,
|
|
3587
|
-
get: function () { return
|
|
3572
|
+
get: function () { return chunkXFYGRDN3_js.getNodeExecutionAccentRgb; }
|
|
3588
3573
|
});
|
|
3589
3574
|
Object.defineProperty(exports, "isModelCompatibleWithFramework", {
|
|
3590
3575
|
enumerable: true,
|
|
3591
|
-
get: function () { return
|
|
3576
|
+
get: function () { return chunkXFYGRDN3_js.isModelCompatibleWithFramework; }
|
|
3592
3577
|
});
|
|
3593
3578
|
Object.defineProperty(exports, "useModalStore", {
|
|
3594
3579
|
enumerable: true,
|
|
3595
|
-
get: function () { return
|
|
3580
|
+
get: function () { return chunkXFYGRDN3_js.useModalStore; }
|
|
3596
3581
|
});
|
|
3597
3582
|
Object.defineProperty(exports, "useWorkflowBuilderClient", {
|
|
3598
3583
|
enumerable: true,
|
|
3599
|
-
get: function () { return
|
|
3584
|
+
get: function () { return chunkXFYGRDN3_js.useWorkflowBuilderClient; }
|
|
3600
3585
|
});
|
|
3601
3586
|
Object.defineProperty(exports, "useWorkflowBuilderClientOptional", {
|
|
3602
3587
|
enumerable: true,
|
|
3603
|
-
get: function () { return
|
|
3588
|
+
get: function () { return chunkXFYGRDN3_js.useWorkflowBuilderClientOptional; }
|
|
3604
3589
|
});
|
|
3605
3590
|
Object.defineProperty(exports, "useWorkflowStore", {
|
|
3606
3591
|
enumerable: true,
|
|
3607
|
-
get: function () { return
|
|
3592
|
+
get: function () { return chunkXFYGRDN3_js.useWorkflowStore; }
|
|
3608
3593
|
});
|
|
3609
3594
|
Object.defineProperty(exports, "GraphNodeBadge", {
|
|
3610
3595
|
enumerable: true,
|