@datatechsolutions/ui 2.11.2 → 2.11.4
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/contracts.d.mts +293 -0
- package/dist/astrlabe/contracts.d.ts +293 -0
- package/dist/astrlabe/graph-node.d.mts +28 -0
- package/dist/astrlabe/graph-node.d.ts +28 -0
- package/dist/astrlabe/index.d.mts +707 -0
- package/dist/astrlabe/index.d.ts +707 -0
- package/dist/astrlabe/index.js +141 -141
- package/dist/astrlabe/index.js.map +1 -1
- package/dist/astrlabe/index.mjs +27 -27
- package/dist/astrlabe/index.mjs.map +1 -1
- package/dist/astrlabe/utils.d.mts +71 -0
- package/dist/astrlabe/utils.d.ts +71 -0
- package/dist/astrlabe/utils.js +4 -4
- package/dist/astrlabe/utils.mjs +1 -1
- package/dist/astrlabe/workflow-canvas.d.mts +5 -0
- package/dist/astrlabe/workflow-canvas.d.ts +5 -0
- package/dist/astrlabe/workflow-canvas.js +6 -6
- package/dist/astrlabe/workflow-canvas.mjs +5 -5
- package/dist/astrlabe/workflow-preview-canvas.d.mts +10 -0
- package/dist/astrlabe/workflow-preview-canvas.d.ts +10 -0
- package/dist/{chunk-4TZNBT5V.js → chunk-AZ3BXAI6.js} +129 -119
- package/dist/chunk-AZ3BXAI6.js.map +1 -0
- package/dist/{chunk-ZEYHIEHE.mjs → chunk-BHKBEP2Y.mjs} +72 -62
- package/dist/chunk-BHKBEP2Y.mjs.map +1 -0
- package/dist/{chunk-NMXHJMGI.js → chunk-EVX2CFNL.js} +4 -4
- package/dist/chunk-EVX2CFNL.js.map +1 -0
- package/dist/{chunk-VB45EBH5.mjs → chunk-F6EBSQF6.mjs} +4 -4
- package/dist/chunk-F6EBSQF6.mjs.map +1 -0
- package/dist/{chunk-DFR6CMJH.js → chunk-PWBWP5FJ.js} +2 -2
- package/dist/{chunk-DFR6CMJH.js.map → chunk-PWBWP5FJ.js.map} +1 -1
- package/dist/{chunk-AM2TTPYM.mjs → chunk-TLPPVL3W.mjs} +2 -2
- package/dist/{chunk-AM2TTPYM.mjs.map → chunk-TLPPVL3W.mjs.map} +1 -1
- package/dist/dynamic-island-confirm-Cbxh-sta.d.mts +52 -0
- package/dist/dynamic-island-confirm-Cbxh-sta.d.ts +52 -0
- package/dist/index.d.mts +4771 -0
- package/dist/index.d.ts +4771 -0
- package/dist/index.js +727 -727
- package/dist/index.mjs +2 -2
- package/dist/lib/i18n-context.d.mts +36 -0
- package/dist/lib/i18n-context.d.ts +36 -0
- package/dist/lib/router-context.d.mts +35 -0
- package/dist/lib/router-context.d.ts +35 -0
- package/dist/workflow-canvas-CQtkR4Y6.d.ts +241 -0
- package/dist/workflow-canvas-D9kHlmev.d.mts +241 -0
- package/package.json +3 -2
- package/dist/chunk-4TZNBT5V.js.map +0 -1
- package/dist/chunk-NMXHJMGI.js.map +0 -1
- package/dist/chunk-VB45EBH5.mjs.map +0 -1
- package/dist/chunk-ZEYHIEHE.mjs.map +0 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
3
|
-
import { useTranslations, I18nProvider, createI18nFromMessages } from './chunk-7VJ7CMMT.mjs';
|
|
2
|
+
import { GlassModalShell, ContextMenu, FormInput, FormTextarea, FormSelect, Button, Card, CardContent, IconButton, Input } from './chunk-F6EBSQF6.mjs';
|
|
4
3
|
import { GraphNodeHeader, GraphNodeMeta, GraphNodeBadge, GraphNodeIconBubble } from './chunk-OZNTQROP.mjs';
|
|
5
|
-
import { getAgentTier, createDefaultLogicNodeConfig, applyDagreLayout } from './chunk-
|
|
4
|
+
import { getAgentTier, createDefaultLogicNodeConfig, applyDagreLayout } from './chunk-TLPPVL3W.mjs';
|
|
5
|
+
import { useTranslations, I18nProvider, createI18nFromMessages } from './chunk-7VJ7CMMT.mjs';
|
|
6
6
|
import { memo, useState, useRef, useCallback, useEffect, lazy, createContext, useMemo, useContext } from 'react';
|
|
7
7
|
import { Position, NodeResizer, MarkerType, useReactFlow, getBezierPath, BaseEdge, EdgeLabelRenderer, Handle, ReactFlowProvider, useNodesState, useEdgesState, addEdge, BackgroundVariant } from '@xyflow/react';
|
|
8
8
|
import '@xyflow/react/dist/style.css';
|
|
@@ -208,42 +208,42 @@ var useWorkflowStore = create((set, get) => ({
|
|
|
208
208
|
});
|
|
209
209
|
}
|
|
210
210
|
}));
|
|
211
|
-
var
|
|
212
|
-
|
|
211
|
+
var useModalStore = create((set) => ({
|
|
212
|
+
activeModal: null,
|
|
213
213
|
agentData: null,
|
|
214
214
|
subworkflowData: null,
|
|
215
215
|
logicNodeData: null,
|
|
216
216
|
pipelineSettingsData: null,
|
|
217
217
|
openAgentDrawer: (agent, models, isCreateMode = false) => set({
|
|
218
|
-
|
|
218
|
+
activeModal: "agent",
|
|
219
219
|
agentData: { agent, models, isCreateMode },
|
|
220
220
|
subworkflowData: null,
|
|
221
221
|
logicNodeData: null,
|
|
222
222
|
pipelineSettingsData: null
|
|
223
223
|
}),
|
|
224
224
|
openSubworkflowDrawer: (tool) => set({
|
|
225
|
-
|
|
225
|
+
activeModal: "subworkflow",
|
|
226
226
|
subworkflowData: { tool },
|
|
227
227
|
agentData: null,
|
|
228
228
|
logicNodeData: null,
|
|
229
229
|
pipelineSettingsData: null
|
|
230
230
|
}),
|
|
231
|
-
|
|
232
|
-
|
|
231
|
+
openLogicNodeModal: (nodeId, nodeLabel, config) => set({
|
|
232
|
+
activeModal: "logic-node",
|
|
233
233
|
logicNodeData: { nodeId, nodeLabel, config },
|
|
234
234
|
agentData: null,
|
|
235
235
|
subworkflowData: null,
|
|
236
236
|
pipelineSettingsData: null
|
|
237
237
|
}),
|
|
238
|
-
|
|
239
|
-
|
|
238
|
+
openPipelineSettingsModal: (name, description) => set({
|
|
239
|
+
activeModal: "pipeline-settings",
|
|
240
240
|
pipelineSettingsData: { name, description },
|
|
241
241
|
agentData: null,
|
|
242
242
|
subworkflowData: null,
|
|
243
243
|
logicNodeData: null
|
|
244
244
|
}),
|
|
245
|
-
|
|
246
|
-
|
|
245
|
+
closeModal: () => set({
|
|
246
|
+
activeModal: null,
|
|
247
247
|
agentData: null,
|
|
248
248
|
subworkflowData: null,
|
|
249
249
|
logicNodeData: null,
|
|
@@ -2888,19 +2888,27 @@ var GroupFlowNode = memo(function GroupFlowNode2({ id, data, selected }) {
|
|
|
2888
2888
|
/* @__PURE__ */ jsx(WorkflowHandle, { type: "source", position: Position.Right, id: "right-out", colorClass: "!bg-slate-500" })
|
|
2889
2889
|
] });
|
|
2890
2890
|
});
|
|
2891
|
-
|
|
2891
|
+
var LEGACY_WIDTH_MAP = {
|
|
2892
|
+
"max-w-xl": "xl",
|
|
2893
|
+
"max-w-2xl": "2xl",
|
|
2894
|
+
"max-w-4xl": "4xl",
|
|
2895
|
+
"max-w-6xl": "6xl",
|
|
2896
|
+
"max-w-full": "full"
|
|
2897
|
+
};
|
|
2898
|
+
function WorkspaceModal({
|
|
2892
2899
|
open,
|
|
2893
2900
|
onClose,
|
|
2894
2901
|
title,
|
|
2895
2902
|
subtitle,
|
|
2896
2903
|
icon,
|
|
2897
2904
|
gradient = "from-gray-400 to-gray-500",
|
|
2898
|
-
maxWidth = "
|
|
2905
|
+
maxWidth = "2xl",
|
|
2899
2906
|
tabs,
|
|
2900
2907
|
children
|
|
2901
2908
|
}) {
|
|
2902
|
-
|
|
2903
|
-
|
|
2909
|
+
const resolvedSize = LEGACY_WIDTH_MAP[maxWidth] ?? maxWidth;
|
|
2910
|
+
return /* @__PURE__ */ jsxs(
|
|
2911
|
+
GlassModalShell,
|
|
2904
2912
|
{
|
|
2905
2913
|
open,
|
|
2906
2914
|
onClose,
|
|
@@ -2908,9 +2916,11 @@ function WorkspaceDrawer({
|
|
|
2908
2916
|
subtitle,
|
|
2909
2917
|
icon,
|
|
2910
2918
|
gradient,
|
|
2911
|
-
maxWidth,
|
|
2912
|
-
|
|
2913
|
-
|
|
2919
|
+
maxWidth: resolvedSize,
|
|
2920
|
+
children: [
|
|
2921
|
+
tabs,
|
|
2922
|
+
children
|
|
2923
|
+
]
|
|
2914
2924
|
}
|
|
2915
2925
|
);
|
|
2916
2926
|
}
|
|
@@ -5043,12 +5053,12 @@ var NODE_TITLE_KEYS = {
|
|
|
5043
5053
|
datasource: "datasourceNodeConfig",
|
|
5044
5054
|
group: "groupNodeConfig"
|
|
5045
5055
|
};
|
|
5046
|
-
function
|
|
5056
|
+
function LogicNodeModal({ onSave, entities = [], datasources = [], onLoadTables, onLoadSchema }) {
|
|
5047
5057
|
const t = useTranslations("agents.workflow");
|
|
5048
|
-
const
|
|
5049
|
-
const logicNodeData =
|
|
5050
|
-
const
|
|
5051
|
-
const open =
|
|
5058
|
+
const activeModal = useModalStore((s) => s.activeModal);
|
|
5059
|
+
const logicNodeData = useModalStore((s) => s.logicNodeData);
|
|
5060
|
+
const closeModal = useModalStore((s) => s.closeModal);
|
|
5061
|
+
const open = activeModal === "logic-node";
|
|
5052
5062
|
const nodeId = logicNodeData?.nodeId ?? null;
|
|
5053
5063
|
const nodeLabel = logicNodeData?.nodeLabel ?? "";
|
|
5054
5064
|
const config = logicNodeData?.config ?? null;
|
|
@@ -5064,37 +5074,37 @@ function LogicNodeDrawer({ onSave, entities = [], datasources = [], onLoadTables
|
|
|
5064
5074
|
const renderForm = () => {
|
|
5065
5075
|
switch (config.type) {
|
|
5066
5076
|
case "start":
|
|
5067
|
-
return /* @__PURE__ */ jsx(StartNodeConfigForm, { config, onSave: handleSave, onCancel:
|
|
5077
|
+
return /* @__PURE__ */ jsx(StartNodeConfigForm, { config, onSave: handleSave, onCancel: closeModal });
|
|
5068
5078
|
case "end":
|
|
5069
|
-
return /* @__PURE__ */ jsx(EndNodeConfigForm, { config, onSave: handleSave, onCancel:
|
|
5079
|
+
return /* @__PURE__ */ jsx(EndNodeConfigForm, { config, onSave: handleSave, onCancel: closeModal });
|
|
5070
5080
|
case "if_else":
|
|
5071
|
-
return /* @__PURE__ */ jsx(IfElseNodeConfigForm, { config, onSave: handleSave, onCancel:
|
|
5081
|
+
return /* @__PURE__ */ jsx(IfElseNodeConfigForm, { config, onSave: handleSave, onCancel: closeModal });
|
|
5072
5082
|
case "code":
|
|
5073
|
-
return /* @__PURE__ */ jsx(CodeNodeConfigForm, { config, onSave: handleSave, onCancel:
|
|
5083
|
+
return /* @__PURE__ */ jsx(CodeNodeConfigForm, { config, onSave: handleSave, onCancel: closeModal });
|
|
5074
5084
|
case "http_request":
|
|
5075
|
-
return /* @__PURE__ */ jsx(HttpRequestNodeConfigForm, { config, onSave: handleSave, onCancel:
|
|
5085
|
+
return /* @__PURE__ */ jsx(HttpRequestNodeConfigForm, { config, onSave: handleSave, onCancel: closeModal });
|
|
5076
5086
|
case "template_transform":
|
|
5077
|
-
return /* @__PURE__ */ jsx(TemplateTransformNodeConfigForm, { config, onSave: handleSave, onCancel:
|
|
5087
|
+
return /* @__PURE__ */ jsx(TemplateTransformNodeConfigForm, { config, onSave: handleSave, onCancel: closeModal });
|
|
5078
5088
|
case "iteration":
|
|
5079
|
-
return /* @__PURE__ */ jsx(IterationNodeConfigForm, { config, onSave: handleSave, onCancel:
|
|
5089
|
+
return /* @__PURE__ */ jsx(IterationNodeConfigForm, { config, onSave: handleSave, onCancel: closeModal });
|
|
5080
5090
|
case "knowledge_base":
|
|
5081
|
-
return /* @__PURE__ */ jsx(KnowledgeBaseNodeConfigForm, { config, onSave: handleSave, onCancel:
|
|
5091
|
+
return /* @__PURE__ */ jsx(KnowledgeBaseNodeConfigForm, { config, onSave: handleSave, onCancel: closeModal });
|
|
5082
5092
|
case "answer":
|
|
5083
|
-
return /* @__PURE__ */ jsx(AnswerNodeConfigForm, { config, onSave: handleSave, onCancel:
|
|
5093
|
+
return /* @__PURE__ */ jsx(AnswerNodeConfigForm, { config, onSave: handleSave, onCancel: closeModal });
|
|
5084
5094
|
case "question_classifier":
|
|
5085
|
-
return /* @__PURE__ */ jsx(QuestionClassifierNodeConfigForm, { config, onSave: handleSave, onCancel:
|
|
5095
|
+
return /* @__PURE__ */ jsx(QuestionClassifierNodeConfigForm, { config, onSave: handleSave, onCancel: closeModal });
|
|
5086
5096
|
case "parameter_extractor":
|
|
5087
|
-
return /* @__PURE__ */ jsx(ParameterExtractorNodeConfigForm, { config, onSave: handleSave, onCancel:
|
|
5097
|
+
return /* @__PURE__ */ jsx(ParameterExtractorNodeConfigForm, { config, onSave: handleSave, onCancel: closeModal });
|
|
5088
5098
|
case "variable_assigner":
|
|
5089
|
-
return /* @__PURE__ */ jsx(VariableAssignerNodeConfigForm, { config, onSave: handleSave, onCancel:
|
|
5099
|
+
return /* @__PURE__ */ jsx(VariableAssignerNodeConfigForm, { config, onSave: handleSave, onCancel: closeModal });
|
|
5090
5100
|
case "variable_aggregator":
|
|
5091
|
-
return /* @__PURE__ */ jsx(VariableAggregatorNodeConfigForm, { config, onSave: handleSave, onCancel:
|
|
5101
|
+
return /* @__PURE__ */ jsx(VariableAggregatorNodeConfigForm, { config, onSave: handleSave, onCancel: closeModal });
|
|
5092
5102
|
case "document_extractor":
|
|
5093
|
-
return /* @__PURE__ */ jsx(DocumentExtractorNodeConfigForm, { config, onSave: handleSave, onCancel:
|
|
5103
|
+
return /* @__PURE__ */ jsx(DocumentExtractorNodeConfigForm, { config, onSave: handleSave, onCancel: closeModal });
|
|
5094
5104
|
case "list_operator":
|
|
5095
|
-
return /* @__PURE__ */ jsx(ListOperatorNodeConfigForm, { config, onSave: handleSave, onCancel:
|
|
5105
|
+
return /* @__PURE__ */ jsx(ListOperatorNodeConfigForm, { config, onSave: handleSave, onCancel: closeModal });
|
|
5096
5106
|
case "iteration_start":
|
|
5097
|
-
return /* @__PURE__ */ jsx(IterationStartNodeConfigForm, { config, onSave: handleSave, onCancel:
|
|
5107
|
+
return /* @__PURE__ */ jsx(IterationStartNodeConfigForm, { config, onSave: handleSave, onCancel: closeModal });
|
|
5098
5108
|
case "datasource":
|
|
5099
5109
|
return /* @__PURE__ */ jsx(
|
|
5100
5110
|
DatasourceNodeConfigForm,
|
|
@@ -5102,25 +5112,25 @@ function LogicNodeDrawer({ onSave, entities = [], datasources = [], onLoadTables
|
|
|
5102
5112
|
nodeId,
|
|
5103
5113
|
config,
|
|
5104
5114
|
onSave: handleSave,
|
|
5105
|
-
onCancel:
|
|
5115
|
+
onCancel: closeModal,
|
|
5106
5116
|
datasources,
|
|
5107
5117
|
onLoadTables: onLoadTables ?? (async () => []),
|
|
5108
5118
|
onLoadSchema: onLoadSchema ?? (async () => [])
|
|
5109
5119
|
}
|
|
5110
5120
|
);
|
|
5111
5121
|
case "entity":
|
|
5112
|
-
return /* @__PURE__ */ jsx(EntityNodeConfigForm, { config, entities, onSave: handleSave, onCancel:
|
|
5122
|
+
return /* @__PURE__ */ jsx(EntityNodeConfigForm, { config, entities, onSave: handleSave, onCancel: closeModal });
|
|
5113
5123
|
case "group":
|
|
5114
|
-
return /* @__PURE__ */ jsx(GroupNodeConfigForm, { config, onSave: handleSave, onCancel:
|
|
5124
|
+
return /* @__PURE__ */ jsx(GroupNodeConfigForm, { config, onSave: handleSave, onCancel: closeModal });
|
|
5115
5125
|
default:
|
|
5116
5126
|
return null;
|
|
5117
5127
|
}
|
|
5118
5128
|
};
|
|
5119
5129
|
return /* @__PURE__ */ jsx(
|
|
5120
|
-
|
|
5130
|
+
WorkspaceModal,
|
|
5121
5131
|
{
|
|
5122
5132
|
open,
|
|
5123
|
-
onClose:
|
|
5133
|
+
onClose: closeModal,
|
|
5124
5134
|
title,
|
|
5125
5135
|
subtitle: nodeLabel,
|
|
5126
5136
|
icon: IconComponent ? /* @__PURE__ */ jsx(IconComponent, { className: "h-5 w-5 text-white" }) : void 0,
|
|
@@ -5544,17 +5554,17 @@ function WorkflowCanvasInner({
|
|
|
5544
5554
|
isCreatingAgent = false,
|
|
5545
5555
|
nodeTypes: externalNodeTypes,
|
|
5546
5556
|
renderAgentDrawer,
|
|
5547
|
-
|
|
5557
|
+
renderLogicNodeModal: _renderLogicNodeModal
|
|
5548
5558
|
}) {
|
|
5549
5559
|
const { screenToFlowPosition, getNode, toObject, fitView, zoomIn, zoomOut, zoomTo } = useReactFlow();
|
|
5550
5560
|
const tWorkflow = useTranslations("agents.workflow");
|
|
5551
5561
|
const sortedAgents = useMemo(() => [...agents].sort((agentA, agentB) => (agentA.order ?? 0) - (agentB.order ?? 0)), [agents]);
|
|
5552
5562
|
const [selectedAgentId, setSelectedAgentId] = useState(null);
|
|
5553
|
-
const openAgentDrawerAction =
|
|
5554
|
-
const
|
|
5555
|
-
const
|
|
5556
|
-
const
|
|
5557
|
-
const
|
|
5563
|
+
const openAgentDrawerAction = useModalStore((s) => s.openAgentDrawer);
|
|
5564
|
+
const openLogicNodeModalAction = useModalStore((s) => s.openLogicNodeModal);
|
|
5565
|
+
const closeModalAction = useModalStore((s) => s.closeModal);
|
|
5566
|
+
const activeModal = useModalStore((s) => s.activeModal);
|
|
5567
|
+
const modalOpen = activeModal === "agent";
|
|
5558
5568
|
useEffect(() => {
|
|
5559
5569
|
if (isCreatingAgent) {
|
|
5560
5570
|
openAgentDrawerAction(
|
|
@@ -5606,10 +5616,10 @@ function WorkflowCanvasInner({
|
|
|
5606
5616
|
const nodeData = node.data;
|
|
5607
5617
|
const config = nodeData.config;
|
|
5608
5618
|
if (config) {
|
|
5609
|
-
|
|
5619
|
+
openLogicNodeModalAction(nodeId, nodeData.label ?? "", config);
|
|
5610
5620
|
}
|
|
5611
5621
|
}
|
|
5612
|
-
}, [getNode,
|
|
5622
|
+
}, [getNode, openLogicNodeModalAction]);
|
|
5613
5623
|
const agentMap = useMemo(() => {
|
|
5614
5624
|
const map = /* @__PURE__ */ new Map();
|
|
5615
5625
|
for (const agent of agents) {
|
|
@@ -7001,26 +7011,26 @@ function WorkflowCanvasInner({
|
|
|
7001
7011
|
renderAgentDrawer?.({
|
|
7002
7012
|
agent: selectedAgent,
|
|
7003
7013
|
models,
|
|
7004
|
-
open:
|
|
7014
|
+
open: modalOpen || isCreatingAgent,
|
|
7005
7015
|
isCreateMode: isCreatingAgent,
|
|
7006
7016
|
onClose: () => {
|
|
7007
|
-
|
|
7017
|
+
closeModalAction();
|
|
7008
7018
|
setSelectedAgentId(null);
|
|
7009
7019
|
if (isCreatingAgent) onCancelCreateAgent?.();
|
|
7010
7020
|
},
|
|
7011
7021
|
onSaved: () => {
|
|
7012
|
-
|
|
7022
|
+
closeModalAction();
|
|
7013
7023
|
setSelectedAgentId(null);
|
|
7014
7024
|
if (isCreatingAgent) onCancelCreateAgent?.();
|
|
7015
7025
|
onAgentSaved?.();
|
|
7016
7026
|
}
|
|
7017
7027
|
}),
|
|
7018
7028
|
/* @__PURE__ */ jsx(
|
|
7019
|
-
|
|
7029
|
+
LogicNodeModal,
|
|
7020
7030
|
{
|
|
7021
7031
|
onSave: (nodeId, config) => {
|
|
7022
7032
|
handleSaveLogicNodeConfig(nodeId, config);
|
|
7023
|
-
|
|
7033
|
+
closeModalAction();
|
|
7024
7034
|
setEditingLogicNodeId(null);
|
|
7025
7035
|
},
|
|
7026
7036
|
entities: allEntities
|
|
@@ -7162,6 +7172,6 @@ function Workspace({
|
|
|
7162
7172
|
) }) });
|
|
7163
7173
|
}
|
|
7164
7174
|
|
|
7165
|
-
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,
|
|
7166
|
-
//# sourceMappingURL=chunk-
|
|
7167
|
-
//# sourceMappingURL=chunk-
|
|
7175
|
+
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, NodeCard, NodeContextMenu, NoteFlowNode, OpenAIIcon, PanelContextMenu, ParameterExtractorFlowNode, QuestionClassifierFlowNode, RuleFlowNode, SelectionContextMenu, StartFlowNode, StrandsIcon, TemplateTransformFlowNode, ToolFlowNode, VariableAggregatorFlowNode, VariableAssignerFlowNode, WorkflowBuilderProvider, WorkflowCanvas, Workspace, WorkspaceModal, getCompatibleModels, getDefaultFrameworkForModel, getEntityBadgeColor, getEntityGradient, getEntityHandleColor, getEntityIcon, getEntityMinimapColor, getFrameworkMeta, isModelCompatibleWithFramework, useModalStore, useWorkflowBuilderClient, useWorkflowBuilderClientOptional, useWorkflowStore };
|
|
7176
|
+
//# sourceMappingURL=chunk-BHKBEP2Y.mjs.map
|
|
7177
|
+
//# sourceMappingURL=chunk-BHKBEP2Y.mjs.map
|