@datatechsolutions/ui 2.11.35 → 2.11.36
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 +108 -108
- package/dist/astrlabe/index.mjs +2 -2
- package/dist/astrlabe/workflow-canvas.js +2 -2
- package/dist/astrlabe/workflow-canvas.mjs +1 -1
- package/dist/{chunk-AXC4INNY.mjs → chunk-OCGSU63W.mjs} +4 -4
- package/dist/{chunk-AXC4INNY.mjs.map → chunk-OCGSU63W.mjs.map} +1 -1
- package/dist/{chunk-BXVUUI2B.js → chunk-UURRO37B.js} +4 -4
- package/dist/{chunk-BXVUUI2B.js.map → chunk-UURRO37B.js.map} +1 -1
- package/package.json +1 -1
package/dist/astrlabe/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
require('../chunk-55H6WZQP.js');
|
|
5
5
|
var chunk3GE3MBUZ_js = require('../chunk-3GE3MBUZ.js');
|
|
6
|
-
var
|
|
6
|
+
var chunkUURRO37B_js = require('../chunk-UURRO37B.js');
|
|
7
7
|
var chunkKEUOCEOO_js = require('../chunk-KEUOCEOO.js');
|
|
8
8
|
var chunkYXN2K77G_js = require('../chunk-YXN2K77G.js');
|
|
9
9
|
require('../chunk-S7KHTUHA.js');
|
|
@@ -83,7 +83,7 @@ function OutputCard({ label, value }) {
|
|
|
83
83
|
function AgentProfileHeader({ agent, models, t, selectedModelId, setSelectedModelId, selectedFramework, temperature, setTemperature, elo, setElo, onChanged }) {
|
|
84
84
|
const modelName = models.find((model) => model.id === selectedModelId)?.name ?? selectedModelId ?? "\u2014";
|
|
85
85
|
const avatarUrl = agent.avatar;
|
|
86
|
-
const frameworkMeta =
|
|
86
|
+
const frameworkMeta = chunkUURRO37B_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(chunkUURRO37B_js.FRAMEWORK_META);
|
|
363
363
|
const hasProviderConstraints = connectedProviderTypes.length > 0;
|
|
364
|
-
const compatibleModels =
|
|
364
|
+
const compatibleModels = chunkUURRO37B_js.getCompatibleModels(models, selectedFramework);
|
|
365
365
|
const handleFrameworkChange = react.useCallback((newFramework) => {
|
|
366
366
|
setSelectedFramework(newFramework);
|
|
367
|
-
if (!
|
|
368
|
-
const compatible =
|
|
367
|
+
if (!chunkUURRO37B_js.isModelCompatibleWithFramework(selectedModelId, newFramework)) {
|
|
368
|
+
const compatible = chunkUURRO37B_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 = chunkUURRO37B_js.FRAMEWORK_META[key];
|
|
380
380
|
const isSelected = key === selectedFramework;
|
|
381
|
-
const compatCount =
|
|
382
|
-
const isCompatibleWithProviders = !hasProviderConstraints ||
|
|
381
|
+
const compatCount = chunkUURRO37B_js.getCompatibleModels(models, key).length;
|
|
382
|
+
const isCompatibleWithProviders = !hasProviderConstraints || chunkUURRO37B_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 = chunkUURRO37B_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 = chunkUURRO37B_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) => chunkUURRO37B_js.isModelCompatibleWithFramework(m.id, agentFramework)
|
|
604
604
|
);
|
|
605
605
|
const incompatibleModels = providerModels.models.filter(
|
|
606
|
-
(m) => !
|
|
606
|
+
(m) => !chunkUURRO37B_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 = chunkUURRO37B_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" }),
|
|
@@ -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 = chunkUURRO37B_js.useModalStore((s) => s.activeModal);
|
|
718
|
+
const agentData = chunkUURRO37B_js.useModalStore((s) => s.agentData);
|
|
719
|
+
const closeModal = chunkUURRO37B_js.useModalStore((s) => s.closeModal);
|
|
720
720
|
const open = activeModal === "agent";
|
|
721
721
|
const agent = agentData?.agent ?? null;
|
|
722
722
|
const models = agentData?.models ?? [];
|
|
@@ -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 = chunkUURRO37B_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 ?? chunkUURRO37B_js.CATEGORY_COLORS[categoryKey] ?? chunkUURRO37B_js.CATEGORY_COLORS.external;
|
|
976
|
+
const categoryPill = chunkUURRO37B_js.CATEGORY_PILL_COLORS[categoryKey] ?? chunkUURRO37B_js.CATEGORY_PILL_COLORS.external;
|
|
977
|
+
const IconComponent = chunkUURRO37B_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");
|
|
@@ -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 ? `${chunkUURRO37B_js.CATEGORY_PILL_COLORS[cat] ?? chunkUURRO37B_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
|
+
chunkUURRO37B_js.WorkflowCanvas,
|
|
1130
1130
|
{
|
|
1131
1131
|
initialGraph,
|
|
1132
1132
|
agents: [],
|
|
@@ -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 = chunkUURRO37B_js.useModalStore((s) => s.activeModal);
|
|
1188
|
+
const data = chunkUURRO37B_js.useModalStore((s) => s.pipelineSettingsData);
|
|
1189
|
+
const closeModal = chunkUURRO37B_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("");
|
|
@@ -1395,8 +1395,8 @@ function CollapsibleSection({ title, icon, colorClass, defaultOpen = true, count
|
|
|
1395
1395
|
] });
|
|
1396
1396
|
}
|
|
1397
1397
|
function LogicNodeItemCard({ item, translationFunction }) {
|
|
1398
|
-
const IconComponent =
|
|
1399
|
-
const gradient =
|
|
1398
|
+
const IconComponent = chunkUURRO37B_js.LOGIC_ICON_MAP[item.nodeType];
|
|
1399
|
+
const gradient = chunkUURRO37B_js.LOGIC_NODE_GRADIENTS[item.nodeType] ?? "from-gray-400 to-gray-500";
|
|
1400
1400
|
const defaultConfig = chunkPWBWP5FJ_js.createDefaultLogicNodeConfig(item.nodeType);
|
|
1401
1401
|
const configJson = defaultConfig ? JSON.stringify(defaultConfig) : void 0;
|
|
1402
1402
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -1639,8 +1639,8 @@ function NodePalette({ agents, tools, agentTools = [], rules, entities = [], mod
|
|
|
1639
1639
|
limit: entity.defaultLimit
|
|
1640
1640
|
});
|
|
1641
1641
|
const dsLogo = getDatasourceLogo(entity.id);
|
|
1642
|
-
const EntityIcon =
|
|
1643
|
-
const entityGradient =
|
|
1642
|
+
const EntityIcon = chunkUURRO37B_js.getEntityIcon(entity.id);
|
|
1643
|
+
const entityGradient = chunkUURRO37B_js.getEntityGradient(entity.id);
|
|
1644
1644
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
1645
1645
|
"div",
|
|
1646
1646
|
{
|
|
@@ -2037,9 +2037,9 @@ function formatDuration2(durationMs) {
|
|
|
2037
2037
|
}
|
|
2038
2038
|
function RunPanel({ open, onClose, onRun, onStop }) {
|
|
2039
2039
|
const translations = chunkYXN2K77G_js.useTranslations("agents.workflow.runPanel");
|
|
2040
|
-
const nodes =
|
|
2041
|
-
const isRunning =
|
|
2042
|
-
const nodeResults =
|
|
2040
|
+
const nodes = chunkUURRO37B_js.useWorkflowStore((state) => state.nodes);
|
|
2041
|
+
const isRunning = chunkUURRO37B_js.useWorkflowStore((state) => state.isRunning);
|
|
2042
|
+
const nodeResults = chunkUURRO37B_js.useWorkflowStore((state) => state.nodeResults);
|
|
2043
2043
|
const startNode = nodes.find((node) => node.type === "start");
|
|
2044
2044
|
const hasEndNode = nodes.some((node) => node.type === "end");
|
|
2045
2045
|
const hasValidStartConfig = Boolean(
|
|
@@ -2324,8 +2324,8 @@ function inferVariables(config, nodeType) {
|
|
|
2324
2324
|
}
|
|
2325
2325
|
function VariableInspector({ open, onClose }) {
|
|
2326
2326
|
const translations = chunkYXN2K77G_js.useTranslations("agents.workflow.variableInspector");
|
|
2327
|
-
const nodes =
|
|
2328
|
-
const edges =
|
|
2327
|
+
const nodes = chunkUURRO37B_js.useWorkflowStore((state) => state.nodes);
|
|
2328
|
+
const edges = chunkUURRO37B_js.useWorkflowStore((state) => state.edges);
|
|
2329
2329
|
const [expandedNodes, setExpandedNodes] = react.useState(/* @__PURE__ */ new Set());
|
|
2330
2330
|
const toggleNodeExpansion = react.useCallback((nodeId) => {
|
|
2331
2331
|
setExpandedNodes((current) => {
|
|
@@ -2387,8 +2387,8 @@ function VariableInspector({ open, onClose }) {
|
|
|
2387
2387
|
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "mt-2 text-sm text-gray-500 dark:text-gray-400", children: translations("noNodes") })
|
|
2388
2388
|
] }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: "divide-y divide-gray-100 dark:divide-gray-800", children: nodeVariableEntries.map((entry) => {
|
|
2389
2389
|
const isExpanded = expandedNodes.has(entry.nodeId);
|
|
2390
|
-
const IconComponent =
|
|
2391
|
-
const gradient =
|
|
2390
|
+
const IconComponent = chunkUURRO37B_js.LOGIC_ICON_MAP[entry.nodeType];
|
|
2391
|
+
const gradient = chunkUURRO37B_js.LOGIC_NODE_GRADIENTS[entry.nodeType] ?? "from-gray-400 to-gray-500";
|
|
2392
2392
|
const inputVariables = entry.variables.filter((variable) => variable.direction === "input");
|
|
2393
2393
|
const outputVariables = entry.variables.filter((variable) => variable.direction === "output");
|
|
2394
2394
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { "data-testid": `variable-node-${entry.nodeId}`, children: [
|
|
@@ -2454,7 +2454,7 @@ function RunInputDialog({
|
|
|
2454
2454
|
onRun
|
|
2455
2455
|
}) {
|
|
2456
2456
|
const t = chunkYXN2K77G_js.useTranslations("agents.workflow.runInputDialog");
|
|
2457
|
-
const nodes =
|
|
2457
|
+
const nodes = chunkUURRO37B_js.useWorkflowStore((state) => state.nodes);
|
|
2458
2458
|
const [values, setValues] = react.useState({});
|
|
2459
2459
|
const inputVariableNames = react.useMemo(() => {
|
|
2460
2460
|
const storeStartNode = nodes.find((node) => node.type === "start");
|
|
@@ -2535,8 +2535,8 @@ function PreviewPanel({ open, onClose, workflowId, loadRuns }) {
|
|
|
2535
2535
|
const [isLoadingRuns, setIsLoadingRuns] = react.useState(false);
|
|
2536
2536
|
const [selectedRun, setSelectedRun] = react.useState(null);
|
|
2537
2537
|
const [selectedNode, setSelectedNode] = react.useState(null);
|
|
2538
|
-
const isRunning =
|
|
2539
|
-
const nodeResults =
|
|
2538
|
+
const isRunning = chunkUURRO37B_js.useWorkflowStore((state) => state.isRunning);
|
|
2539
|
+
const nodeResults = chunkUURRO37B_js.useWorkflowStore((state) => state.nodeResults);
|
|
2540
2540
|
const refreshRuns = react.useCallback(async () => {
|
|
2541
2541
|
setIsLoadingRuns(true);
|
|
2542
2542
|
try {
|
|
@@ -2692,7 +2692,7 @@ var AutoSaveWorkspace = react.memo(function AutoSaveWorkspace2({
|
|
|
2692
2692
|
onAutoSaveGraph(graph);
|
|
2693
2693
|
}, [onAutoSaveGraph, onGraphSnapshot]);
|
|
2694
2694
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2695
|
-
|
|
2695
|
+
chunkUURRO37B_js.Workspace,
|
|
2696
2696
|
{
|
|
2697
2697
|
...workspaceProps,
|
|
2698
2698
|
onGraphChange: handleGraphChange
|
|
@@ -3063,14 +3063,14 @@ function DslImportModal({ open, onClose, onImport }) {
|
|
|
3063
3063
|
}
|
|
3064
3064
|
|
|
3065
3065
|
// src/astrlabe/store/selectors.ts
|
|
3066
|
-
var useCanUndo = () =>
|
|
3067
|
-
var useCanRedo = () =>
|
|
3068
|
-
var useHasCopied = () =>
|
|
3069
|
-
var useContextMenu = () =>
|
|
3070
|
-
var useEditingNodeId = () =>
|
|
3071
|
-
var useSelectedNodeCount = () =>
|
|
3072
|
-
var useIsRunning = () =>
|
|
3073
|
-
var useNodeResults = () =>
|
|
3066
|
+
var useCanUndo = () => chunkUURRO37B_js.useWorkflowStore((state) => state.past.length > 0);
|
|
3067
|
+
var useCanRedo = () => chunkUURRO37B_js.useWorkflowStore((state) => state.future.length > 0);
|
|
3068
|
+
var useHasCopied = () => chunkUURRO37B_js.useWorkflowStore((state) => state.clipboard !== null);
|
|
3069
|
+
var useContextMenu = () => chunkUURRO37B_js.useWorkflowStore((state) => state.contextMenu);
|
|
3070
|
+
var useEditingNodeId = () => chunkUURRO37B_js.useWorkflowStore((state) => state.editingNodeId);
|
|
3071
|
+
var useSelectedNodeCount = () => chunkUURRO37B_js.useWorkflowStore((state) => state.nodes.filter((node) => node.selected).length);
|
|
3072
|
+
var useIsRunning = () => chunkUURRO37B_js.useWorkflowStore((state) => state.isRunning);
|
|
3073
|
+
var useNodeResults = () => chunkUURRO37B_js.useWorkflowStore((state) => state.nodeResults);
|
|
3074
3074
|
var DEFAULT_MAX_HISTORY = 50;
|
|
3075
3075
|
function useUndoRedo(nodes, edges, setNodes, setEdges, maxHistory = DEFAULT_MAX_HISTORY) {
|
|
3076
3076
|
const pastRef = react.useRef([]);
|
|
@@ -3358,239 +3358,239 @@ Object.defineProperty(exports, "validateWorkflowGraph", {
|
|
|
3358
3358
|
});
|
|
3359
3359
|
Object.defineProperty(exports, "AgentFlowNode", {
|
|
3360
3360
|
enumerable: true,
|
|
3361
|
-
get: function () { return
|
|
3361
|
+
get: function () { return chunkUURRO37B_js.AgentFlowNode; }
|
|
3362
3362
|
});
|
|
3363
3363
|
Object.defineProperty(exports, "AgentToolFlowNode", {
|
|
3364
3364
|
enumerable: true,
|
|
3365
|
-
get: function () { return
|
|
3365
|
+
get: function () { return chunkUURRO37B_js.AgentToolFlowNode; }
|
|
3366
3366
|
});
|
|
3367
3367
|
Object.defineProperty(exports, "AnswerFlowNode", {
|
|
3368
3368
|
enumerable: true,
|
|
3369
|
-
get: function () { return
|
|
3369
|
+
get: function () { return chunkUURRO37B_js.AnswerFlowNode; }
|
|
3370
3370
|
});
|
|
3371
3371
|
Object.defineProperty(exports, "AnthropicIcon", {
|
|
3372
3372
|
enumerable: true,
|
|
3373
|
-
get: function () { return
|
|
3373
|
+
get: function () { return chunkUURRO37B_js.AnthropicIcon; }
|
|
3374
3374
|
});
|
|
3375
3375
|
Object.defineProperty(exports, "CodeFlowNode", {
|
|
3376
3376
|
enumerable: true,
|
|
3377
|
-
get: function () { return
|
|
3377
|
+
get: function () { return chunkUURRO37B_js.CodeFlowNode; }
|
|
3378
3378
|
});
|
|
3379
3379
|
Object.defineProperty(exports, "CrewAIIcon", {
|
|
3380
3380
|
enumerable: true,
|
|
3381
|
-
get: function () { return
|
|
3381
|
+
get: function () { return chunkUURRO37B_js.CrewAIIcon; }
|
|
3382
3382
|
});
|
|
3383
3383
|
Object.defineProperty(exports, "DocumentExtractorFlowNode", {
|
|
3384
3384
|
enumerable: true,
|
|
3385
|
-
get: function () { return
|
|
3385
|
+
get: function () { return chunkUURRO37B_js.DocumentExtractorFlowNode; }
|
|
3386
3386
|
});
|
|
3387
3387
|
Object.defineProperty(exports, "EndFlowNode", {
|
|
3388
3388
|
enumerable: true,
|
|
3389
|
-
get: function () { return
|
|
3389
|
+
get: function () { return chunkUURRO37B_js.EndFlowNode; }
|
|
3390
3390
|
});
|
|
3391
3391
|
Object.defineProperty(exports, "EntityFlowNode", {
|
|
3392
3392
|
enumerable: true,
|
|
3393
|
-
get: function () { return
|
|
3393
|
+
get: function () { return chunkUURRO37B_js.EntityFlowNode; }
|
|
3394
3394
|
});
|
|
3395
3395
|
Object.defineProperty(exports, "FRAMEWORK_META", {
|
|
3396
3396
|
enumerable: true,
|
|
3397
|
-
get: function () { return
|
|
3397
|
+
get: function () { return chunkUURRO37B_js.FRAMEWORK_META; }
|
|
3398
3398
|
});
|
|
3399
3399
|
Object.defineProperty(exports, "GoogleADKIcon", {
|
|
3400
3400
|
enumerable: true,
|
|
3401
|
-
get: function () { return
|
|
3401
|
+
get: function () { return chunkUURRO37B_js.GoogleADKIcon; }
|
|
3402
3402
|
});
|
|
3403
3403
|
Object.defineProperty(exports, "GroupFlowNode", {
|
|
3404
3404
|
enumerable: true,
|
|
3405
|
-
get: function () { return
|
|
3405
|
+
get: function () { return chunkUURRO37B_js.GroupFlowNode; }
|
|
3406
3406
|
});
|
|
3407
3407
|
Object.defineProperty(exports, "HttpRequestFlowNode", {
|
|
3408
3408
|
enumerable: true,
|
|
3409
|
-
get: function () { return
|
|
3409
|
+
get: function () { return chunkUURRO37B_js.HttpRequestFlowNode; }
|
|
3410
3410
|
});
|
|
3411
3411
|
Object.defineProperty(exports, "IfElseFlowNode", {
|
|
3412
3412
|
enumerable: true,
|
|
3413
|
-
get: function () { return
|
|
3413
|
+
get: function () { return chunkUURRO37B_js.IfElseFlowNode; }
|
|
3414
3414
|
});
|
|
3415
3415
|
Object.defineProperty(exports, "IterationFlowNode", {
|
|
3416
3416
|
enumerable: true,
|
|
3417
|
-
get: function () { return
|
|
3417
|
+
get: function () { return chunkUURRO37B_js.IterationFlowNode; }
|
|
3418
3418
|
});
|
|
3419
3419
|
Object.defineProperty(exports, "IterationStartFlowNode", {
|
|
3420
3420
|
enumerable: true,
|
|
3421
|
-
get: function () { return
|
|
3421
|
+
get: function () { return chunkUURRO37B_js.IterationStartFlowNode; }
|
|
3422
3422
|
});
|
|
3423
3423
|
Object.defineProperty(exports, "KnowledgeBaseFlowNode", {
|
|
3424
3424
|
enumerable: true,
|
|
3425
|
-
get: function () { return
|
|
3425
|
+
get: function () { return chunkUURRO37B_js.KnowledgeBaseFlowNode; }
|
|
3426
3426
|
});
|
|
3427
3427
|
Object.defineProperty(exports, "LOGIC_ICON_MAP", {
|
|
3428
3428
|
enumerable: true,
|
|
3429
|
-
get: function () { return
|
|
3429
|
+
get: function () { return chunkUURRO37B_js.LOGIC_ICON_MAP; }
|
|
3430
3430
|
});
|
|
3431
3431
|
Object.defineProperty(exports, "LOGIC_NODE_BADGE_COLORS", {
|
|
3432
3432
|
enumerable: true,
|
|
3433
|
-
get: function () { return
|
|
3433
|
+
get: function () { return chunkUURRO37B_js.LOGIC_NODE_BADGE_COLORS; }
|
|
3434
3434
|
});
|
|
3435
3435
|
Object.defineProperty(exports, "LOGIC_NODE_GRADIENTS", {
|
|
3436
3436
|
enumerable: true,
|
|
3437
|
-
get: function () { return
|
|
3437
|
+
get: function () { return chunkUURRO37B_js.LOGIC_NODE_GRADIENTS; }
|
|
3438
3438
|
});
|
|
3439
3439
|
Object.defineProperty(exports, "LOGIC_NODE_HANDLE_COLORS", {
|
|
3440
3440
|
enumerable: true,
|
|
3441
|
-
get: function () { return
|
|
3441
|
+
get: function () { return chunkUURRO37B_js.LOGIC_NODE_HANDLE_COLORS; }
|
|
3442
3442
|
});
|
|
3443
3443
|
Object.defineProperty(exports, "LangChainIcon", {
|
|
3444
3444
|
enumerable: true,
|
|
3445
|
-
get: function () { return
|
|
3445
|
+
get: function () { return chunkUURRO37B_js.LangChainIcon; }
|
|
3446
3446
|
});
|
|
3447
3447
|
Object.defineProperty(exports, "ListOperatorFlowNode", {
|
|
3448
3448
|
enumerable: true,
|
|
3449
|
-
get: function () { return
|
|
3449
|
+
get: function () { return chunkUURRO37B_js.ListOperatorFlowNode; }
|
|
3450
3450
|
});
|
|
3451
3451
|
Object.defineProperty(exports, "LogicNodeModal", {
|
|
3452
3452
|
enumerable: true,
|
|
3453
|
-
get: function () { return
|
|
3453
|
+
get: function () { return chunkUURRO37B_js.LogicNodeModal; }
|
|
3454
3454
|
});
|
|
3455
3455
|
Object.defineProperty(exports, "MINIMAP_NODE_COLORS", {
|
|
3456
3456
|
enumerable: true,
|
|
3457
|
-
get: function () { return
|
|
3457
|
+
get: function () { return chunkUURRO37B_js.MINIMAP_NODE_COLORS; }
|
|
3458
3458
|
});
|
|
3459
3459
|
Object.defineProperty(exports, "ModelProviderFlowNode", {
|
|
3460
3460
|
enumerable: true,
|
|
3461
|
-
get: function () { return
|
|
3461
|
+
get: function () { return chunkUURRO37B_js.ModelProviderFlowNode; }
|
|
3462
3462
|
});
|
|
3463
3463
|
Object.defineProperty(exports, "NODE_EXECUTION_ACCENT_COLORS", {
|
|
3464
3464
|
enumerable: true,
|
|
3465
|
-
get: function () { return
|
|
3465
|
+
get: function () { return chunkUURRO37B_js.NODE_EXECUTION_ACCENT_COLORS; }
|
|
3466
3466
|
});
|
|
3467
3467
|
Object.defineProperty(exports, "NodeCard", {
|
|
3468
3468
|
enumerable: true,
|
|
3469
|
-
get: function () { return
|
|
3469
|
+
get: function () { return chunkUURRO37B_js.NodeCard; }
|
|
3470
3470
|
});
|
|
3471
3471
|
Object.defineProperty(exports, "NodeContextMenu", {
|
|
3472
3472
|
enumerable: true,
|
|
3473
|
-
get: function () { return
|
|
3473
|
+
get: function () { return chunkUURRO37B_js.NodeContextMenu; }
|
|
3474
3474
|
});
|
|
3475
3475
|
Object.defineProperty(exports, "NoteFlowNode", {
|
|
3476
3476
|
enumerable: true,
|
|
3477
|
-
get: function () { return
|
|
3477
|
+
get: function () { return chunkUURRO37B_js.NoteFlowNode; }
|
|
3478
3478
|
});
|
|
3479
3479
|
Object.defineProperty(exports, "OpenAIIcon", {
|
|
3480
3480
|
enumerable: true,
|
|
3481
|
-
get: function () { return
|
|
3481
|
+
get: function () { return chunkUURRO37B_js.OpenAIIcon; }
|
|
3482
3482
|
});
|
|
3483
3483
|
Object.defineProperty(exports, "PanelContextMenu", {
|
|
3484
3484
|
enumerable: true,
|
|
3485
|
-
get: function () { return
|
|
3485
|
+
get: function () { return chunkUURRO37B_js.PanelContextMenu; }
|
|
3486
3486
|
});
|
|
3487
3487
|
Object.defineProperty(exports, "ParameterExtractorFlowNode", {
|
|
3488
3488
|
enumerable: true,
|
|
3489
|
-
get: function () { return
|
|
3489
|
+
get: function () { return chunkUURRO37B_js.ParameterExtractorFlowNode; }
|
|
3490
3490
|
});
|
|
3491
3491
|
Object.defineProperty(exports, "QuestionClassifierFlowNode", {
|
|
3492
3492
|
enumerable: true,
|
|
3493
|
-
get: function () { return
|
|
3493
|
+
get: function () { return chunkUURRO37B_js.QuestionClassifierFlowNode; }
|
|
3494
3494
|
});
|
|
3495
3495
|
Object.defineProperty(exports, "RuleFlowNode", {
|
|
3496
3496
|
enumerable: true,
|
|
3497
|
-
get: function () { return
|
|
3497
|
+
get: function () { return chunkUURRO37B_js.RuleFlowNode; }
|
|
3498
3498
|
});
|
|
3499
3499
|
Object.defineProperty(exports, "SelectionContextMenu", {
|
|
3500
3500
|
enumerable: true,
|
|
3501
|
-
get: function () { return
|
|
3501
|
+
get: function () { return chunkUURRO37B_js.SelectionContextMenu; }
|
|
3502
3502
|
});
|
|
3503
3503
|
Object.defineProperty(exports, "StartFlowNode", {
|
|
3504
3504
|
enumerable: true,
|
|
3505
|
-
get: function () { return
|
|
3505
|
+
get: function () { return chunkUURRO37B_js.StartFlowNode; }
|
|
3506
3506
|
});
|
|
3507
3507
|
Object.defineProperty(exports, "StrandsIcon", {
|
|
3508
3508
|
enumerable: true,
|
|
3509
|
-
get: function () { return
|
|
3509
|
+
get: function () { return chunkUURRO37B_js.StrandsIcon; }
|
|
3510
3510
|
});
|
|
3511
3511
|
Object.defineProperty(exports, "TemplateTransformFlowNode", {
|
|
3512
3512
|
enumerable: true,
|
|
3513
|
-
get: function () { return
|
|
3513
|
+
get: function () { return chunkUURRO37B_js.TemplateTransformFlowNode; }
|
|
3514
3514
|
});
|
|
3515
3515
|
Object.defineProperty(exports, "ToolFlowNode", {
|
|
3516
3516
|
enumerable: true,
|
|
3517
|
-
get: function () { return
|
|
3517
|
+
get: function () { return chunkUURRO37B_js.ToolFlowNode; }
|
|
3518
3518
|
});
|
|
3519
3519
|
Object.defineProperty(exports, "VariableAggregatorFlowNode", {
|
|
3520
3520
|
enumerable: true,
|
|
3521
|
-
get: function () { return
|
|
3521
|
+
get: function () { return chunkUURRO37B_js.VariableAggregatorFlowNode; }
|
|
3522
3522
|
});
|
|
3523
3523
|
Object.defineProperty(exports, "VariableAssignerFlowNode", {
|
|
3524
3524
|
enumerable: true,
|
|
3525
|
-
get: function () { return
|
|
3525
|
+
get: function () { return chunkUURRO37B_js.VariableAssignerFlowNode; }
|
|
3526
3526
|
});
|
|
3527
3527
|
Object.defineProperty(exports, "WorkflowBuilderProvider", {
|
|
3528
3528
|
enumerable: true,
|
|
3529
|
-
get: function () { return
|
|
3529
|
+
get: function () { return chunkUURRO37B_js.WorkflowBuilderProvider; }
|
|
3530
3530
|
});
|
|
3531
3531
|
Object.defineProperty(exports, "Workspace", {
|
|
3532
3532
|
enumerable: true,
|
|
3533
|
-
get: function () { return
|
|
3533
|
+
get: function () { return chunkUURRO37B_js.Workspace; }
|
|
3534
3534
|
});
|
|
3535
3535
|
Object.defineProperty(exports, "getCompatibleModels", {
|
|
3536
3536
|
enumerable: true,
|
|
3537
|
-
get: function () { return
|
|
3537
|
+
get: function () { return chunkUURRO37B_js.getCompatibleModels; }
|
|
3538
3538
|
});
|
|
3539
3539
|
Object.defineProperty(exports, "getDefaultFrameworkForModel", {
|
|
3540
3540
|
enumerable: true,
|
|
3541
|
-
get: function () { return
|
|
3541
|
+
get: function () { return chunkUURRO37B_js.getDefaultFrameworkForModel; }
|
|
3542
3542
|
});
|
|
3543
3543
|
Object.defineProperty(exports, "getEntityBadgeColor", {
|
|
3544
3544
|
enumerable: true,
|
|
3545
|
-
get: function () { return
|
|
3545
|
+
get: function () { return chunkUURRO37B_js.getEntityBadgeColor; }
|
|
3546
3546
|
});
|
|
3547
3547
|
Object.defineProperty(exports, "getEntityGradient", {
|
|
3548
3548
|
enumerable: true,
|
|
3549
|
-
get: function () { return
|
|
3549
|
+
get: function () { return chunkUURRO37B_js.getEntityGradient; }
|
|
3550
3550
|
});
|
|
3551
3551
|
Object.defineProperty(exports, "getEntityHandleColor", {
|
|
3552
3552
|
enumerable: true,
|
|
3553
|
-
get: function () { return
|
|
3553
|
+
get: function () { return chunkUURRO37B_js.getEntityHandleColor; }
|
|
3554
3554
|
});
|
|
3555
3555
|
Object.defineProperty(exports, "getEntityIcon", {
|
|
3556
3556
|
enumerable: true,
|
|
3557
|
-
get: function () { return
|
|
3557
|
+
get: function () { return chunkUURRO37B_js.getEntityIcon; }
|
|
3558
3558
|
});
|
|
3559
3559
|
Object.defineProperty(exports, "getEntityMinimapColor", {
|
|
3560
3560
|
enumerable: true,
|
|
3561
|
-
get: function () { return
|
|
3561
|
+
get: function () { return chunkUURRO37B_js.getEntityMinimapColor; }
|
|
3562
3562
|
});
|
|
3563
3563
|
Object.defineProperty(exports, "getFrameworkMeta", {
|
|
3564
3564
|
enumerable: true,
|
|
3565
|
-
get: function () { return
|
|
3565
|
+
get: function () { return chunkUURRO37B_js.getFrameworkMeta; }
|
|
3566
3566
|
});
|
|
3567
3567
|
Object.defineProperty(exports, "getNodeExecutionAccent", {
|
|
3568
3568
|
enumerable: true,
|
|
3569
|
-
get: function () { return
|
|
3569
|
+
get: function () { return chunkUURRO37B_js.getNodeExecutionAccent; }
|
|
3570
3570
|
});
|
|
3571
3571
|
Object.defineProperty(exports, "getNodeExecutionAccentRgb", {
|
|
3572
3572
|
enumerable: true,
|
|
3573
|
-
get: function () { return
|
|
3573
|
+
get: function () { return chunkUURRO37B_js.getNodeExecutionAccentRgb; }
|
|
3574
3574
|
});
|
|
3575
3575
|
Object.defineProperty(exports, "isModelCompatibleWithFramework", {
|
|
3576
3576
|
enumerable: true,
|
|
3577
|
-
get: function () { return
|
|
3577
|
+
get: function () { return chunkUURRO37B_js.isModelCompatibleWithFramework; }
|
|
3578
3578
|
});
|
|
3579
3579
|
Object.defineProperty(exports, "useModalStore", {
|
|
3580
3580
|
enumerable: true,
|
|
3581
|
-
get: function () { return
|
|
3581
|
+
get: function () { return chunkUURRO37B_js.useModalStore; }
|
|
3582
3582
|
});
|
|
3583
3583
|
Object.defineProperty(exports, "useWorkflowBuilderClient", {
|
|
3584
3584
|
enumerable: true,
|
|
3585
|
-
get: function () { return
|
|
3585
|
+
get: function () { return chunkUURRO37B_js.useWorkflowBuilderClient; }
|
|
3586
3586
|
});
|
|
3587
3587
|
Object.defineProperty(exports, "useWorkflowBuilderClientOptional", {
|
|
3588
3588
|
enumerable: true,
|
|
3589
|
-
get: function () { return
|
|
3589
|
+
get: function () { return chunkUURRO37B_js.useWorkflowBuilderClientOptional; }
|
|
3590
3590
|
});
|
|
3591
3591
|
Object.defineProperty(exports, "useWorkflowStore", {
|
|
3592
3592
|
enumerable: true,
|
|
3593
|
-
get: function () { return
|
|
3593
|
+
get: function () { return chunkUURRO37B_js.useWorkflowStore; }
|
|
3594
3594
|
});
|
|
3595
3595
|
Object.defineProperty(exports, "GraphNodeBadge", {
|
|
3596
3596
|
enumerable: true,
|
package/dist/astrlabe/index.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import '../chunk-JB6RNAD2.mjs';
|
|
3
3
|
export { topologicalSortAgents, validateWorkflowGraph } from '../chunk-BLNXRUC4.mjs';
|
|
4
|
-
import { Workspace, useModalStore, CATEGORY_COLORS, CATEGORY_PILL_COLORS, ICON_MAP, WorkflowCanvas, getEntityIcon, getEntityGradient, useWorkflowStore, LOGIC_ICON_MAP, LOGIC_NODE_GRADIENTS, getFrameworkMeta, getCompatibleModels, isModelCompatibleWithFramework, FRAMEWORK_META, isFrameworkCompatibleWithProviders } from '../chunk-
|
|
5
|
-
export { AgentFlowNode, AgentToolFlowNode, AnswerFlowNode, AnthropicIcon, CodeFlowNode, CrewAIIcon, DocumentExtractorFlowNode, EndFlowNode, EntityFlowNode, FRAMEWORK_META, GoogleADKIcon, GroupFlowNode, HttpRequestFlowNode, IfElseFlowNode, IterationFlowNode, IterationStartFlowNode, KnowledgeBaseFlowNode, LOGIC_ICON_MAP, LOGIC_NODE_BADGE_COLORS, LOGIC_NODE_GRADIENTS, LOGIC_NODE_HANDLE_COLORS, LangChainIcon, ListOperatorFlowNode, LogicNodeModal, MINIMAP_NODE_COLORS, ModelProviderFlowNode, NODE_EXECUTION_ACCENT_COLORS, NodeCard, NodeContextMenu, NoteFlowNode, OpenAIIcon, PanelContextMenu, ParameterExtractorFlowNode, QuestionClassifierFlowNode, RuleFlowNode, SelectionContextMenu, StartFlowNode, StrandsIcon, TemplateTransformFlowNode, ToolFlowNode, VariableAggregatorFlowNode, VariableAssignerFlowNode, WorkflowBuilderProvider, Workspace, getCompatibleModels, getDefaultFrameworkForModel, getEntityBadgeColor, getEntityGradient, getEntityHandleColor, getEntityIcon, getEntityMinimapColor, getFrameworkMeta, getNodeExecutionAccent, getNodeExecutionAccentRgb, isModelCompatibleWithFramework, useModalStore, useWorkflowBuilderClient, useWorkflowBuilderClientOptional, useWorkflowStore } from '../chunk-
|
|
4
|
+
import { Workspace, useModalStore, CATEGORY_COLORS, CATEGORY_PILL_COLORS, ICON_MAP, WorkflowCanvas, getEntityIcon, getEntityGradient, useWorkflowStore, LOGIC_ICON_MAP, LOGIC_NODE_GRADIENTS, getFrameworkMeta, getCompatibleModels, isModelCompatibleWithFramework, FRAMEWORK_META, isFrameworkCompatibleWithProviders } from '../chunk-OCGSU63W.mjs';
|
|
5
|
+
export { AgentFlowNode, AgentToolFlowNode, AnswerFlowNode, AnthropicIcon, CodeFlowNode, CrewAIIcon, DocumentExtractorFlowNode, EndFlowNode, EntityFlowNode, FRAMEWORK_META, GoogleADKIcon, GroupFlowNode, HttpRequestFlowNode, IfElseFlowNode, IterationFlowNode, IterationStartFlowNode, KnowledgeBaseFlowNode, LOGIC_ICON_MAP, LOGIC_NODE_BADGE_COLORS, LOGIC_NODE_GRADIENTS, LOGIC_NODE_HANDLE_COLORS, LangChainIcon, ListOperatorFlowNode, LogicNodeModal, MINIMAP_NODE_COLORS, ModelProviderFlowNode, NODE_EXECUTION_ACCENT_COLORS, NodeCard, NodeContextMenu, NoteFlowNode, OpenAIIcon, PanelContextMenu, ParameterExtractorFlowNode, QuestionClassifierFlowNode, RuleFlowNode, SelectionContextMenu, StartFlowNode, StrandsIcon, TemplateTransformFlowNode, ToolFlowNode, VariableAggregatorFlowNode, VariableAssignerFlowNode, WorkflowBuilderProvider, Workspace, getCompatibleModels, getDefaultFrameworkForModel, getEntityBadgeColor, getEntityGradient, getEntityHandleColor, getEntityIcon, getEntityMinimapColor, getFrameworkMeta, getNodeExecutionAccent, getNodeExecutionAccentRgb, isModelCompatibleWithFramework, useModalStore, useWorkflowBuilderClient, useWorkflowBuilderClientOptional, useWorkflowStore } from '../chunk-OCGSU63W.mjs';
|
|
6
6
|
import { GlassModal, Button, FormInput, FormTextarea, ToggleSwitch, Input, DynamicIslandConfirm } from '../chunk-DNGI4ASL.mjs';
|
|
7
7
|
import { useTranslations } from '../chunk-7VJ7CMMT.mjs';
|
|
8
8
|
import '../chunk-QWG2FMUN.mjs';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var chunkUURRO37B_js = require('../chunk-UURRO37B.js');
|
|
5
5
|
require('../chunk-KEUOCEOO.js');
|
|
6
6
|
require('../chunk-YXN2K77G.js');
|
|
7
7
|
require('../chunk-S7KHTUHA.js');
|
|
@@ -13,7 +13,7 @@ require('../chunk-PWBWP5FJ.js');
|
|
|
13
13
|
|
|
14
14
|
Object.defineProperty(exports, "Workspace", {
|
|
15
15
|
enumerable: true,
|
|
16
|
-
get: function () { return
|
|
16
|
+
get: function () { return chunkUURRO37B_js.Workspace; }
|
|
17
17
|
});
|
|
18
18
|
//# sourceMappingURL=workflow-canvas.js.map
|
|
19
19
|
//# sourceMappingURL=workflow-canvas.js.map
|
|
@@ -740,7 +740,7 @@ function ConditionalEdgeComponent({
|
|
|
740
740
|
"button",
|
|
741
741
|
{
|
|
742
742
|
type: "button",
|
|
743
|
-
className: "nodrag nopan pointer-events-auto absolute flex h-5 w-5 items-center justify-center rounded-full border border-teal-300 bg-white shadow-md transition-
|
|
743
|
+
className: "nodrag nopan pointer-events-auto absolute flex h-5 w-5 items-center justify-center rounded-full border border-teal-300 bg-white shadow-md transition-colors hover:bg-teal-50 dark:border-teal-600 dark:bg-gray-800 dark:hover:bg-teal-900/30",
|
|
744
744
|
style: {
|
|
745
745
|
transform: `translate(-50%, -50%) translate(${labelX}px,${labelY + insertButtonOffset}px)`
|
|
746
746
|
},
|
|
@@ -763,7 +763,7 @@ function ConditionalEdgeComponent({
|
|
|
763
763
|
"button",
|
|
764
764
|
{
|
|
765
765
|
type: "button",
|
|
766
|
-
className: "nodrag nopan pointer-events-auto absolute flex h-5 w-5 items-center justify-center rounded-full border border-red-300 bg-white shadow-md transition-
|
|
766
|
+
className: "nodrag nopan pointer-events-auto absolute flex h-5 w-5 items-center justify-center rounded-full border border-red-300 bg-white shadow-md transition-colors hover:bg-red-50 dark:border-red-600 dark:bg-gray-800 dark:hover:bg-red-900/30",
|
|
767
767
|
style: {
|
|
768
768
|
transform: `translate(-50%, -50%) translate(${labelX}px,${labelY + deleteButtonOffset}px)`
|
|
769
769
|
},
|
|
@@ -7619,5 +7619,5 @@ function Workspace({
|
|
|
7619
7619
|
}
|
|
7620
7620
|
|
|
7621
7621
|
export { AgentFlowNode, AgentToolFlowNode, AnswerFlowNode, AnthropicIcon, CATEGORY_COLORS, CATEGORY_PILL_COLORS, CodeFlowNode, CrewAIIcon, DocumentExtractorFlowNode, EndFlowNode, EntityFlowNode, FRAMEWORK_META, GoogleADKIcon, GroupFlowNode, HttpRequestFlowNode, ICON_MAP, IfElseFlowNode, IterationFlowNode, IterationStartFlowNode, KnowledgeBaseFlowNode, LOGIC_ICON_MAP, LOGIC_NODE_BADGE_COLORS, LOGIC_NODE_GRADIENTS, LOGIC_NODE_HANDLE_COLORS, LangChainIcon, ListOperatorFlowNode, LogicNodeModal, MINIMAP_NODE_COLORS, ModelProviderFlowNode, NODE_EXECUTION_ACCENT_COLORS, NodeCard, NodeContextMenu, NoteFlowNode, OpenAIIcon, PanelContextMenu, ParameterExtractorFlowNode, QuestionClassifierFlowNode, RuleFlowNode, SelectionContextMenu, StartFlowNode, StrandsIcon, TemplateTransformFlowNode, ToolFlowNode, VariableAggregatorFlowNode, VariableAssignerFlowNode, WorkflowBuilderProvider, WorkflowCanvas, Workspace, getCompatibleModels, getDefaultFrameworkForModel, getEntityBadgeColor, getEntityGradient, getEntityHandleColor, getEntityIcon, getEntityMinimapColor, getFrameworkMeta, getNodeExecutionAccent, getNodeExecutionAccentRgb, isFrameworkCompatibleWithProviders, isModelCompatibleWithFramework, useModalStore, useWorkflowBuilderClient, useWorkflowBuilderClientOptional, useWorkflowStore };
|
|
7622
|
-
//# sourceMappingURL=chunk-
|
|
7623
|
-
//# sourceMappingURL=chunk-
|
|
7622
|
+
//# sourceMappingURL=chunk-OCGSU63W.mjs.map
|
|
7623
|
+
//# sourceMappingURL=chunk-OCGSU63W.mjs.map
|