@dxos/plugin-conductor 0.8.4-main.1068cf700f → 0.8.4-main.1c7ec43d41
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/README.md +7 -3
- package/dist/lib/browser/ConductorPlugin-YYCCUBUG.mjs +26 -0
- package/dist/lib/browser/ConductorPlugin-YYCCUBUG.mjs.map +7 -0
- package/dist/lib/browser/index.mjs +22 -56
- package/dist/lib/browser/index.mjs.map +4 -4
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/browser/translations.mjs +28 -0
- package/dist/lib/browser/translations.mjs.map +7 -0
- package/dist/lib/node-esm/ConductorPlugin-55I2R2LW.mjs +28 -0
- package/dist/lib/node-esm/ConductorPlugin-55I2R2LW.mjs.map +7 -0
- package/dist/lib/node-esm/index.mjs +22 -55
- package/dist/lib/node-esm/index.mjs.map +4 -4
- package/dist/lib/node-esm/meta.json +1 -1
- package/dist/lib/node-esm/translations.mjs +30 -0
- package/dist/lib/node-esm/translations.mjs.map +7 -0
- package/dist/types/src/ConductorPlugin.d.ts +1 -0
- package/dist/types/src/ConductorPlugin.d.ts.map +1 -1
- package/dist/types/src/ConductorPlugin.test.d.ts +2 -0
- package/dist/types/src/ConductorPlugin.test.d.ts.map +1 -0
- package/dist/types/src/capabilities/create-object.d.ts +11 -0
- package/dist/types/src/capabilities/create-object.d.ts.map +1 -0
- package/dist/types/src/capabilities/index.d.ts +8 -1
- package/dist/types/src/capabilities/index.d.ts.map +1 -1
- package/dist/types/src/capabilities/react-surface.d.ts +5 -0
- package/dist/types/src/capabilities/react-surface.d.ts.map +1 -0
- package/dist/types/src/components/index.d.ts +0 -1
- package/dist/types/src/components/index.d.ts.map +1 -1
- package/dist/types/src/containers/CanvasContainer/CanvasContainer.d.ts +6 -0
- package/dist/types/src/containers/CanvasContainer/CanvasContainer.d.ts.map +1 -0
- package/dist/types/src/containers/CanvasContainer/index.d.ts +2 -0
- package/dist/types/src/containers/CanvasContainer/index.d.ts.map +1 -0
- package/dist/types/src/containers/index.d.ts +3 -0
- package/dist/types/src/containers/index.d.ts.map +1 -0
- package/dist/types/src/index.d.ts +2 -1
- package/dist/types/src/index.d.ts.map +1 -1
- package/dist/types/src/translations.d.ts +24 -15
- package/dist/types/src/translations.d.ts.map +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +45 -31
- package/src/ConductorPlugin.test.ts +27 -0
- package/src/ConductorPlugin.tsx +6 -17
- package/src/capabilities/create-object.ts +29 -0
- package/src/capabilities/index.ts +4 -1
- package/src/capabilities/react-surface.tsx +32 -0
- package/src/components/index.ts +1 -3
- package/src/{components → containers/CanvasContainer}/CanvasContainer.tsx +9 -11
- package/src/containers/CanvasContainer/index.ts +5 -0
- package/src/containers/index.ts +7 -0
- package/src/index.ts +6 -1
- package/src/meta.ts +1 -1
- package/src/translations.ts +12 -11
- package/dist/lib/browser/chunk-GV4DJFU6.mjs +0 -24
- package/dist/lib/browser/chunk-GV4DJFU6.mjs.map +0 -7
- package/dist/lib/browser/react-surface-FRVZG3LI.mjs +0 -112
- package/dist/lib/browser/react-surface-FRVZG3LI.mjs.map +0 -7
- package/dist/lib/node-esm/chunk-DILME6SD.mjs +0 -26
- package/dist/lib/node-esm/chunk-DILME6SD.mjs.map +0 -7
- package/dist/lib/node-esm/react-surface-S6UQA6XL.mjs +0 -113
- package/dist/lib/node-esm/react-surface-S6UQA6XL.mjs.map +0 -7
- package/dist/types/src/capabilities/react-surface/index.d.ts +0 -3
- package/dist/types/src/capabilities/react-surface/index.d.ts.map +0 -1
- package/dist/types/src/capabilities/react-surface/react-surface.d.ts +0 -5
- package/dist/types/src/capabilities/react-surface/react-surface.d.ts.map +0 -1
- package/dist/types/src/components/CanvasContainer.d.ts +0 -7
- package/dist/types/src/components/CanvasContainer.d.ts.map +0 -1
- package/src/capabilities/react-surface/index.ts +0 -7
- package/src/capabilities/react-surface/react-surface.tsx +0 -29
package/README.md
CHANGED
|
@@ -28,10 +28,10 @@ The system is built on `@dxos/graph` as the core abstraction layer Canvas visual
|
|
|
28
28
|
- ComputeNode state changes are Effect signals
|
|
29
29
|
- Canvas React components automatically update based on these signals
|
|
30
30
|
|
|
31
|
-
|
|
32
31
|
## Development
|
|
33
32
|
|
|
34
33
|
### Phase 1: Basic editor
|
|
34
|
+
|
|
35
35
|
- [x] Canvas with pan and zoom (`@dxos/react-canvaas`).
|
|
36
36
|
- [x] General graph data structure (`@dxos/graph`).
|
|
37
37
|
- [x] Radix-style Editor component, with Canvas, Grid and Toolbar.
|
|
@@ -47,7 +47,8 @@ The system is built on `@dxos/graph` as the core abstraction layer Canvas visual
|
|
|
47
47
|
- [ ] Undo/redo (history).
|
|
48
48
|
- [ ] Snap to edges or center? (currently center).
|
|
49
49
|
|
|
50
|
-
### Phase 2:
|
|
50
|
+
### Phase 2:
|
|
51
|
+
|
|
51
52
|
- [x] FunctionShape components with properties and anchor points. Add/delete and Play buttons.
|
|
52
53
|
- [x] Shape registry.
|
|
53
54
|
- [x] Custom frames.
|
|
@@ -77,9 +78,11 @@ The system is built on `@dxos/graph` as the core abstraction layer Canvas visual
|
|
|
77
78
|
- [x] GPT (with prompt and base prompt inputs).
|
|
78
79
|
|
|
79
80
|
### Phase 4:
|
|
80
|
-
|
|
81
|
+
|
|
82
|
+
- [ ] Group/collapse nodes; hierarchical graph editor.
|
|
81
83
|
|
|
82
84
|
### Technical Debt
|
|
85
|
+
|
|
83
86
|
- [x] `AttentionContainer` (and key management).
|
|
84
87
|
- [ ] Factor out common Toolbar pattern (with state observers).
|
|
85
88
|
- [ ] Reconcile Graph with framework (ECHO, app-graph, etc.)
|
|
@@ -87,4 +90,5 @@ The system is built on `@dxos/graph` as the core abstraction layer Canvas visual
|
|
|
87
90
|
- [ ] TypedObject and schema id property.
|
|
88
91
|
|
|
89
92
|
### Design Issues
|
|
93
|
+
|
|
90
94
|
- [ ] Represent all compute node properties as inputs? (e.g., trigger).
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
// src/ConductorPlugin.tsx
|
|
2
|
+
import { Plugin } from "@dxos/app-framework";
|
|
3
|
+
import { AppPlugin } from "@dxos/app-toolkit";
|
|
4
|
+
import { ComputeGraph } from "@dxos/conductor";
|
|
5
|
+
import { CanvasBoard } from "@dxos/react-ui-canvas-editor";
|
|
6
|
+
import { CreateObject, ReactSurface } from "#capabilities";
|
|
7
|
+
import { meta } from "#meta";
|
|
8
|
+
import { translations } from "#translations";
|
|
9
|
+
var ConductorPlugin = Plugin.define(meta).pipe(AppPlugin.addCreateObjectModule({
|
|
10
|
+
activate: CreateObject
|
|
11
|
+
}), AppPlugin.addSchemaModule({
|
|
12
|
+
schema: [
|
|
13
|
+
CanvasBoard.CanvasBoard,
|
|
14
|
+
ComputeGraph
|
|
15
|
+
]
|
|
16
|
+
}), AppPlugin.addSurfaceModule({
|
|
17
|
+
activate: ReactSurface
|
|
18
|
+
}), AppPlugin.addTranslationsModule({
|
|
19
|
+
translations
|
|
20
|
+
}), Plugin.make);
|
|
21
|
+
var ConductorPlugin_default = ConductorPlugin;
|
|
22
|
+
export {
|
|
23
|
+
ConductorPlugin,
|
|
24
|
+
ConductorPlugin_default as default
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=ConductorPlugin-YYCCUBUG.mjs.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../src/ConductorPlugin.tsx"],
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport { Plugin } from '@dxos/app-framework';\nimport { AppPlugin } from '@dxos/app-toolkit';\nimport { ComputeGraph } from '@dxos/conductor';\nimport { CanvasBoard } from '@dxos/react-ui-canvas-editor';\n\nimport { CreateObject, ReactSurface } from '#capabilities';\nimport { meta } from '#meta';\nimport { translations } from '#translations';\n\nexport const ConductorPlugin = Plugin.define(meta).pipe(\n AppPlugin.addCreateObjectModule({ activate: CreateObject }),\n AppPlugin.addSchemaModule({ schema: [CanvasBoard.CanvasBoard, ComputeGraph] }),\n AppPlugin.addSurfaceModule({ activate: ReactSurface }),\n AppPlugin.addTranslationsModule({ translations }),\n Plugin.make,\n);\n\nexport default ConductorPlugin;\n"],
|
|
5
|
+
"mappings": ";AAIA,SAASA,cAAc;AACvB,SAASC,iBAAiB;AAC1B,SAASC,oBAAoB;AAC7B,SAASC,mBAAmB;AAE5B,SAASC,cAAcC,oBAAoB;AAC3C,SAASC,YAAY;AACrB,SAASC,oBAAoB;AAEtB,IAAMC,kBAAkBR,OAAOS,OAAOH,IAAAA,EAAMI,KACjDT,UAAUU,sBAAsB;EAAEC,UAAUR;AAAa,CAAA,GACzDH,UAAUY,gBAAgB;EAAEC,QAAQ;IAACX,YAAYA;IAAaD;;AAAc,CAAA,GAC5ED,UAAUc,iBAAiB;EAAEH,UAAUP;AAAa,CAAA,GACpDJ,UAAUe,sBAAsB;EAAET;AAAa,CAAA,GAC/CP,OAAOiB,IAAI;AAGb,IAAA,0BAAeT;",
|
|
6
|
+
"names": ["Plugin", "AppPlugin", "ComputeGraph", "CanvasBoard", "CreateObject", "ReactSurface", "meta", "translations", "ConductorPlugin", "define", "pipe", "addCreateObjectModule", "activate", "addSchemaModule", "schema", "addSurfaceModule", "addTranslationsModule", "make"]
|
|
7
|
+
}
|
|
@@ -1,62 +1,28 @@
|
|
|
1
|
-
|
|
2
|
-
meta
|
|
3
|
-
} from "./chunk-GV4DJFU6.mjs";
|
|
4
|
-
|
|
5
|
-
// src/ConductorPlugin.tsx
|
|
6
|
-
import * as Effect from "effect/Effect";
|
|
1
|
+
// src/index.ts
|
|
7
2
|
import { Plugin } from "@dxos/app-framework";
|
|
8
|
-
import { AppPlugin } from "@dxos/app-toolkit";
|
|
9
|
-
import { ComputeGraph } from "@dxos/conductor";
|
|
10
|
-
import { CanvasBoard as CanvasBoard2 } from "@dxos/react-ui-canvas-editor";
|
|
11
|
-
|
|
12
|
-
// src/capabilities/react-surface/index.ts
|
|
13
|
-
import { Capability } from "@dxos/app-framework";
|
|
14
|
-
var ReactSurface = Capability.lazy("ReactSurface", () => import("./react-surface-FRVZG3LI.mjs"));
|
|
15
3
|
|
|
16
|
-
// src/
|
|
17
|
-
import {
|
|
18
|
-
var
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"content placeholder": "Enter text..."
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
];
|
|
38
|
-
|
|
39
|
-
// src/ConductorPlugin.tsx
|
|
40
|
-
var ConductorPlugin = Plugin.define(meta).pipe(AppPlugin.addMetadataModule({
|
|
41
|
-
metadata: {
|
|
42
|
-
id: CanvasBoard2.CanvasBoard.typename,
|
|
43
|
-
metadata: {
|
|
44
|
-
icon: "ph--infinity--regular",
|
|
45
|
-
iconHue: "sky",
|
|
46
|
-
createObject: (props) => Effect.sync(() => CanvasBoard2.make(props)),
|
|
47
|
-
addToCollectionOnCreate: true
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
}), AppPlugin.addSchemaModule({
|
|
51
|
-
schema: [
|
|
52
|
-
CanvasBoard2.CanvasBoard,
|
|
53
|
-
ComputeGraph
|
|
4
|
+
// src/meta.ts
|
|
5
|
+
import { trim } from "@dxos/util";
|
|
6
|
+
var meta = {
|
|
7
|
+
id: "org.dxos.plugin.conductor",
|
|
8
|
+
name: "Conductor",
|
|
9
|
+
description: trim`
|
|
10
|
+
Visual workflow builder using node-based compute graphs to orchestrate complex AI agent pipelines.
|
|
11
|
+
Connect data sources, transformations, and AI models in a drag-and-drop interface for advanced automation.
|
|
12
|
+
`,
|
|
13
|
+
icon: "ph--infinity--regular",
|
|
14
|
+
iconHue: "sky",
|
|
15
|
+
source: "https://github.com/dxos/dxos/tree/main/packages/plugins/plugin-conductor",
|
|
16
|
+
tags: [
|
|
17
|
+
"labs"
|
|
18
|
+
],
|
|
19
|
+
screenshots: [
|
|
20
|
+
"https://dxos.network/plugin-details-canvas-dark.png"
|
|
54
21
|
]
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
}), Plugin.make);
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
// src/index.ts
|
|
25
|
+
var ConductorPlugin = Plugin.lazy(meta, () => import("./ConductorPlugin-YYCCUBUG.mjs"));
|
|
60
26
|
export {
|
|
61
27
|
ConductorPlugin,
|
|
62
28
|
meta
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["../../../src/
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport
|
|
5
|
-
"mappings": "
|
|
6
|
-
"names": ["
|
|
3
|
+
"sources": ["../../../src/index.ts", "../../../src/meta.ts"],
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport { Plugin } from '@dxos/app-framework';\n\nimport { meta } from './meta';\n\nexport const ConductorPlugin = Plugin.lazy(meta, () => import('./ConductorPlugin'));\n\nexport * from './meta';\n", "//\n// Copyright 2023 DXOS.org\n//\n\nimport { type Plugin } from '@dxos/app-framework';\nimport { trim } from '@dxos/util';\n\nexport const meta: Plugin.Meta = {\n id: 'org.dxos.plugin.conductor',\n name: 'Conductor',\n description: trim`\n Visual workflow builder using node-based compute graphs to orchestrate complex AI agent pipelines.\n Connect data sources, transformations, and AI models in a drag-and-drop interface for advanced automation.\n `,\n icon: 'ph--infinity--regular',\n iconHue: 'sky',\n source: 'https://github.com/dxos/dxos/tree/main/packages/plugins/plugin-conductor',\n tags: ['labs'],\n screenshots: ['https://dxos.network/plugin-details-canvas-dark.png'],\n};\n"],
|
|
5
|
+
"mappings": ";AAIA,SAASA,cAAc;;;ACCvB,SAASC,YAAY;AAEd,IAAMC,OAAoB;EAC/BC,IAAI;EACJC,MAAM;EACNC,aAAaJ;;;;EAIbK,MAAM;EACNC,SAAS;EACTC,QAAQ;EACRC,MAAM;IAAC;;EACPC,aAAa;IAAC;;AAChB;;;ADXO,IAAMC,kBAAkBC,OAAOC,KAAKC,MAAM,MAAM,OAAO,gCAAA,CAAA;",
|
|
6
|
+
"names": ["Plugin", "trim", "meta", "id", "name", "description", "icon", "iconHue", "source", "tags", "screenshots", "ConductorPlugin", "Plugin", "lazy", "meta"]
|
|
7
7
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"src/
|
|
1
|
+
{"inputs":{"src/meta.ts":{"bytes":2174,"imports":[{"path":"@dxos/util","kind":"import-statement","external":true}],"format":"esm"},"src/ConductorPlugin.tsx":{"bytes":2977,"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-toolkit","kind":"import-statement","external":true},{"path":"@dxos/conductor","kind":"import-statement","external":true},{"path":"@dxos/react-ui-canvas-editor","kind":"import-statement","external":true},{"path":"#capabilities","kind":"import-statement","external":true},{"path":"#meta","kind":"import-statement","external":true},{"path":"#translations","kind":"import-statement","external":true}],"format":"esm"},"src/index.ts":{"bytes":976,"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"./meta"},{"path":"src/meta.ts","kind":"import-statement","original":"./meta"},{"path":"src/ConductorPlugin.tsx","kind":"dynamic-import","original":"./ConductorPlugin"}],"format":"esm"},"src/translations.ts":{"bytes":2789,"imports":[{"path":"@dxos/react-ui-canvas-editor","kind":"import-statement","external":true},{"path":"#meta","kind":"import-statement","external":true}],"format":"esm"}},"outputs":{"dist/lib/browser/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1455},"dist/lib/browser/index.mjs":{"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"dist/lib/browser/ConductorPlugin-YYCCUBUG.mjs","kind":"dynamic-import"}],"exports":["ConductorPlugin","meta"],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":135},"src/meta.ts":{"bytesInOutput":589}},"bytes":846},"dist/lib/browser/translations.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1340},"dist/lib/browser/translations.mjs":{"imports":[{"path":"@dxos/react-ui-canvas-editor","kind":"import-statement","external":true},{"path":"#meta","kind":"import-statement","external":true}],"exports":["translations"],"entryPoint":"src/translations.ts","inputs":{"src/translations.ts":{"bytesInOutput":712}},"bytes":804},"dist/lib/browser/ConductorPlugin-YYCCUBUG.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1547},"dist/lib/browser/ConductorPlugin-YYCCUBUG.mjs":{"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-toolkit","kind":"import-statement","external":true},{"path":"@dxos/conductor","kind":"import-statement","external":true},{"path":"@dxos/react-ui-canvas-editor","kind":"import-statement","external":true},{"path":"#capabilities","kind":"import-statement","external":true},{"path":"#meta","kind":"import-statement","external":true},{"path":"#translations","kind":"import-statement","external":true}],"exports":["ConductorPlugin","default"],"entryPoint":"src/ConductorPlugin.tsx","inputs":{"src/ConductorPlugin.tsx":{"bytesInOutput":713}},"bytes":862}}}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
// src/translations.ts
|
|
2
|
+
import { CanvasBoard } from "@dxos/react-ui-canvas-editor";
|
|
3
|
+
import { meta } from "#meta";
|
|
4
|
+
var translations = [
|
|
5
|
+
{
|
|
6
|
+
"en-US": {
|
|
7
|
+
[CanvasBoard.CanvasBoard.typename]: {
|
|
8
|
+
"typename.label": "Circuit",
|
|
9
|
+
"typename.label_zero": "Circuits",
|
|
10
|
+
"typename.label_one": "Circuit",
|
|
11
|
+
"typename.label_other": "Circuits",
|
|
12
|
+
"object-name.placeholder": "New circuit",
|
|
13
|
+
"add-object.label": "Add circuit",
|
|
14
|
+
"rename-object.label": "Rename circuit",
|
|
15
|
+
"delete-object.label": "Delete circuit",
|
|
16
|
+
"object-deleted.label": "Circuit deleted"
|
|
17
|
+
},
|
|
18
|
+
[meta.id]: {
|
|
19
|
+
"plugin.name": "Conductor",
|
|
20
|
+
"content.placeholder": "Enter text..."
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
];
|
|
25
|
+
export {
|
|
26
|
+
translations
|
|
27
|
+
};
|
|
28
|
+
//# sourceMappingURL=translations.mjs.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../src/translations.ts"],
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport { type Resource } from '@dxos/react-ui';\nimport { CanvasBoard } from '@dxos/react-ui-canvas-editor';\n\nimport { meta } from '#meta';\n\nexport const translations = [\n {\n 'en-US': {\n [CanvasBoard.CanvasBoard.typename]: {\n 'typename.label': 'Circuit',\n 'typename.label_zero': 'Circuits',\n 'typename.label_one': 'Circuit',\n 'typename.label_other': 'Circuits',\n 'object-name.placeholder': 'New circuit',\n 'add-object.label': 'Add circuit',\n 'rename-object.label': 'Rename circuit',\n 'delete-object.label': 'Delete circuit',\n 'object-deleted.label': 'Circuit deleted',\n },\n [meta.id]: {\n 'plugin.name': 'Conductor',\n 'content.placeholder': 'Enter text...',\n },\n },\n },\n] as const satisfies Resource[];\n"],
|
|
5
|
+
"mappings": ";AAKA,SAASA,mBAAmB;AAE5B,SAASC,YAAY;AAEd,IAAMC,eAAe;EAC1B;IACE,SAAS;MACP,CAACF,YAAYA,YAAYG,QAAQ,GAAG;QAClC,kBAAkB;QAClB,uBAAuB;QACvB,sBAAsB;QACtB,wBAAwB;QACxB,2BAA2B;QAC3B,oBAAoB;QACpB,uBAAuB;QACvB,uBAAuB;QACvB,wBAAwB;MAC1B;MACA,CAACF,KAAKG,EAAE,GAAG;QACT,eAAe;QACf,uBAAuB;MACzB;IACF;EACF;;",
|
|
6
|
+
"names": ["CanvasBoard", "meta", "translations", "typename", "id"]
|
|
7
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { createRequire } from 'node:module';const require = createRequire(import.meta.url);
|
|
2
|
+
|
|
3
|
+
// src/ConductorPlugin.tsx
|
|
4
|
+
import { Plugin } from "@dxos/app-framework";
|
|
5
|
+
import { AppPlugin } from "@dxos/app-toolkit";
|
|
6
|
+
import { ComputeGraph } from "@dxos/conductor";
|
|
7
|
+
import { CanvasBoard } from "@dxos/react-ui-canvas-editor";
|
|
8
|
+
import { CreateObject, ReactSurface } from "#capabilities";
|
|
9
|
+
import { meta } from "#meta";
|
|
10
|
+
import { translations } from "#translations";
|
|
11
|
+
var ConductorPlugin = Plugin.define(meta).pipe(AppPlugin.addCreateObjectModule({
|
|
12
|
+
activate: CreateObject
|
|
13
|
+
}), AppPlugin.addSchemaModule({
|
|
14
|
+
schema: [
|
|
15
|
+
CanvasBoard.CanvasBoard,
|
|
16
|
+
ComputeGraph
|
|
17
|
+
]
|
|
18
|
+
}), AppPlugin.addSurfaceModule({
|
|
19
|
+
activate: ReactSurface
|
|
20
|
+
}), AppPlugin.addTranslationsModule({
|
|
21
|
+
translations
|
|
22
|
+
}), Plugin.make);
|
|
23
|
+
var ConductorPlugin_default = ConductorPlugin;
|
|
24
|
+
export {
|
|
25
|
+
ConductorPlugin,
|
|
26
|
+
ConductorPlugin_default as default
|
|
27
|
+
};
|
|
28
|
+
//# sourceMappingURL=ConductorPlugin-55I2R2LW.mjs.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../src/ConductorPlugin.tsx"],
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport { Plugin } from '@dxos/app-framework';\nimport { AppPlugin } from '@dxos/app-toolkit';\nimport { ComputeGraph } from '@dxos/conductor';\nimport { CanvasBoard } from '@dxos/react-ui-canvas-editor';\n\nimport { CreateObject, ReactSurface } from '#capabilities';\nimport { meta } from '#meta';\nimport { translations } from '#translations';\n\nexport const ConductorPlugin = Plugin.define(meta).pipe(\n AppPlugin.addCreateObjectModule({ activate: CreateObject }),\n AppPlugin.addSchemaModule({ schema: [CanvasBoard.CanvasBoard, ComputeGraph] }),\n AppPlugin.addSurfaceModule({ activate: ReactSurface }),\n AppPlugin.addTranslationsModule({ translations }),\n Plugin.make,\n);\n\nexport default ConductorPlugin;\n"],
|
|
5
|
+
"mappings": ";;;AAIA,SAASA,cAAc;AACvB,SAASC,iBAAiB;AAC1B,SAASC,oBAAoB;AAC7B,SAASC,mBAAmB;AAE5B,SAASC,cAAcC,oBAAoB;AAC3C,SAASC,YAAY;AACrB,SAASC,oBAAoB;AAEtB,IAAMC,kBAAkBR,OAAOS,OAAOH,IAAAA,EAAMI,KACjDT,UAAUU,sBAAsB;EAAEC,UAAUR;AAAa,CAAA,GACzDH,UAAUY,gBAAgB;EAAEC,QAAQ;IAACX,YAAYA;IAAaD;;AAAc,CAAA,GAC5ED,UAAUc,iBAAiB;EAAEH,UAAUP;AAAa,CAAA,GACpDJ,UAAUe,sBAAsB;EAAET;AAAa,CAAA,GAC/CP,OAAOiB,IAAI;AAGb,IAAA,0BAAeT;",
|
|
6
|
+
"names": ["Plugin", "AppPlugin", "ComputeGraph", "CanvasBoard", "CreateObject", "ReactSurface", "meta", "translations", "ConductorPlugin", "define", "pipe", "addCreateObjectModule", "activate", "addSchemaModule", "schema", "addSurfaceModule", "addTranslationsModule", "make"]
|
|
7
|
+
}
|
|
@@ -1,63 +1,30 @@
|
|
|
1
1
|
import { createRequire } from 'node:module';const require = createRequire(import.meta.url);
|
|
2
|
-
import {
|
|
3
|
-
meta
|
|
4
|
-
} from "./chunk-DILME6SD.mjs";
|
|
5
2
|
|
|
6
|
-
// src/
|
|
7
|
-
import * as Effect from "effect/Effect";
|
|
3
|
+
// src/index.ts
|
|
8
4
|
import { Plugin } from "@dxos/app-framework";
|
|
9
|
-
import { AppPlugin } from "@dxos/app-toolkit";
|
|
10
|
-
import { ComputeGraph } from "@dxos/conductor";
|
|
11
|
-
import { CanvasBoard as CanvasBoard2 } from "@dxos/react-ui-canvas-editor";
|
|
12
|
-
|
|
13
|
-
// src/capabilities/react-surface/index.ts
|
|
14
|
-
import { Capability } from "@dxos/app-framework";
|
|
15
|
-
var ReactSurface = Capability.lazy("ReactSurface", () => import("./react-surface-S6UQA6XL.mjs"));
|
|
16
|
-
|
|
17
|
-
// src/translations.ts
|
|
18
|
-
import { CanvasBoard } from "@dxos/react-ui-canvas-editor";
|
|
19
|
-
var translations = [
|
|
20
|
-
{
|
|
21
|
-
"en-US": {
|
|
22
|
-
[CanvasBoard.CanvasBoard.typename]: {
|
|
23
|
-
"typename label": "Circuit",
|
|
24
|
-
"typename label_zero": "Circuits",
|
|
25
|
-
"typename label_one": "Circuit",
|
|
26
|
-
"typename label_other": "Circuits",
|
|
27
|
-
"object name placeholder": "New circuit",
|
|
28
|
-
"rename object label": "Rename circuit",
|
|
29
|
-
"delete object label": "Delete circuit",
|
|
30
|
-
"object deleted label": "Circuit deleted"
|
|
31
|
-
},
|
|
32
|
-
[meta.id]: {
|
|
33
|
-
"plugin name": "Conductor",
|
|
34
|
-
"content placeholder": "Enter text..."
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
];
|
|
39
5
|
|
|
40
|
-
// src/
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
6
|
+
// src/meta.ts
|
|
7
|
+
import { trim } from "@dxos/util";
|
|
8
|
+
var meta = {
|
|
9
|
+
id: "org.dxos.plugin.conductor",
|
|
10
|
+
name: "Conductor",
|
|
11
|
+
description: trim`
|
|
12
|
+
Visual workflow builder using node-based compute graphs to orchestrate complex AI agent pipelines.
|
|
13
|
+
Connect data sources, transformations, and AI models in a drag-and-drop interface for advanced automation.
|
|
14
|
+
`,
|
|
15
|
+
icon: "ph--infinity--regular",
|
|
16
|
+
iconHue: "sky",
|
|
17
|
+
source: "https://github.com/dxos/dxos/tree/main/packages/plugins/plugin-conductor",
|
|
18
|
+
tags: [
|
|
19
|
+
"labs"
|
|
20
|
+
],
|
|
21
|
+
screenshots: [
|
|
22
|
+
"https://dxos.network/plugin-details-canvas-dark.png"
|
|
55
23
|
]
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
}), Plugin.make);
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
// src/index.ts
|
|
27
|
+
var ConductorPlugin = Plugin.lazy(meta, () => import("./ConductorPlugin-55I2R2LW.mjs"));
|
|
61
28
|
export {
|
|
62
29
|
ConductorPlugin,
|
|
63
30
|
meta
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["../../../src/
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport
|
|
5
|
-
"mappings": "
|
|
6
|
-
"names": ["
|
|
3
|
+
"sources": ["../../../src/index.ts", "../../../src/meta.ts"],
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport { Plugin } from '@dxos/app-framework';\n\nimport { meta } from './meta';\n\nexport const ConductorPlugin = Plugin.lazy(meta, () => import('./ConductorPlugin'));\n\nexport * from './meta';\n", "//\n// Copyright 2023 DXOS.org\n//\n\nimport { type Plugin } from '@dxos/app-framework';\nimport { trim } from '@dxos/util';\n\nexport const meta: Plugin.Meta = {\n id: 'org.dxos.plugin.conductor',\n name: 'Conductor',\n description: trim`\n Visual workflow builder using node-based compute graphs to orchestrate complex AI agent pipelines.\n Connect data sources, transformations, and AI models in a drag-and-drop interface for advanced automation.\n `,\n icon: 'ph--infinity--regular',\n iconHue: 'sky',\n source: 'https://github.com/dxos/dxos/tree/main/packages/plugins/plugin-conductor',\n tags: ['labs'],\n screenshots: ['https://dxos.network/plugin-details-canvas-dark.png'],\n};\n"],
|
|
5
|
+
"mappings": ";;;AAIA,SAASA,cAAc;;;ACCvB,SAASC,YAAY;AAEd,IAAMC,OAAoB;EAC/BC,IAAI;EACJC,MAAM;EACNC,aAAaJ;;;;EAIbK,MAAM;EACNC,SAAS;EACTC,QAAQ;EACRC,MAAM;IAAC;;EACPC,aAAa;IAAC;;AAChB;;;ADXO,IAAMC,kBAAkBC,OAAOC,KAAKC,MAAM,MAAM,OAAO,gCAAA,CAAA;",
|
|
6
|
+
"names": ["Plugin", "trim", "meta", "id", "name", "description", "icon", "iconHue", "source", "tags", "screenshots", "ConductorPlugin", "Plugin", "lazy", "meta"]
|
|
7
7
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"src/
|
|
1
|
+
{"inputs":{"src/meta.ts":{"bytes":2174,"imports":[{"path":"@dxos/util","kind":"import-statement","external":true}],"format":"esm"},"src/ConductorPlugin.tsx":{"bytes":2977,"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-toolkit","kind":"import-statement","external":true},{"path":"@dxos/conductor","kind":"import-statement","external":true},{"path":"@dxos/react-ui-canvas-editor","kind":"import-statement","external":true},{"path":"#capabilities","kind":"import-statement","external":true},{"path":"#meta","kind":"import-statement","external":true},{"path":"#translations","kind":"import-statement","external":true}],"format":"esm"},"src/index.ts":{"bytes":976,"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"./meta"},{"path":"src/meta.ts","kind":"import-statement","original":"./meta"},{"path":"src/ConductorPlugin.tsx","kind":"dynamic-import","original":"./ConductorPlugin"}],"format":"esm"},"src/translations.ts":{"bytes":2789,"imports":[{"path":"@dxos/react-ui-canvas-editor","kind":"import-statement","external":true},{"path":"#meta","kind":"import-statement","external":true}],"format":"esm"}},"outputs":{"dist/lib/node-esm/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1457},"dist/lib/node-esm/index.mjs":{"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"dist/lib/node-esm/ConductorPlugin-55I2R2LW.mjs","kind":"dynamic-import"}],"exports":["ConductorPlugin","meta"],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":135},"src/meta.ts":{"bytesInOutput":589}},"bytes":939},"dist/lib/node-esm/translations.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1342},"dist/lib/node-esm/translations.mjs":{"imports":[{"path":"@dxos/react-ui-canvas-editor","kind":"import-statement","external":true},{"path":"#meta","kind":"import-statement","external":true}],"exports":["translations"],"entryPoint":"src/translations.ts","inputs":{"src/translations.ts":{"bytesInOutput":712}},"bytes":897},"dist/lib/node-esm/ConductorPlugin-55I2R2LW.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1549},"dist/lib/node-esm/ConductorPlugin-55I2R2LW.mjs":{"imports":[{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/app-toolkit","kind":"import-statement","external":true},{"path":"@dxos/conductor","kind":"import-statement","external":true},{"path":"@dxos/react-ui-canvas-editor","kind":"import-statement","external":true},{"path":"#capabilities","kind":"import-statement","external":true},{"path":"#meta","kind":"import-statement","external":true},{"path":"#translations","kind":"import-statement","external":true}],"exports":["ConductorPlugin","default"],"entryPoint":"src/ConductorPlugin.tsx","inputs":{"src/ConductorPlugin.tsx":{"bytesInOutput":713}},"bytes":955}}}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { createRequire } from 'node:module';const require = createRequire(import.meta.url);
|
|
2
|
+
|
|
3
|
+
// src/translations.ts
|
|
4
|
+
import { CanvasBoard } from "@dxos/react-ui-canvas-editor";
|
|
5
|
+
import { meta } from "#meta";
|
|
6
|
+
var translations = [
|
|
7
|
+
{
|
|
8
|
+
"en-US": {
|
|
9
|
+
[CanvasBoard.CanvasBoard.typename]: {
|
|
10
|
+
"typename.label": "Circuit",
|
|
11
|
+
"typename.label_zero": "Circuits",
|
|
12
|
+
"typename.label_one": "Circuit",
|
|
13
|
+
"typename.label_other": "Circuits",
|
|
14
|
+
"object-name.placeholder": "New circuit",
|
|
15
|
+
"add-object.label": "Add circuit",
|
|
16
|
+
"rename-object.label": "Rename circuit",
|
|
17
|
+
"delete-object.label": "Delete circuit",
|
|
18
|
+
"object-deleted.label": "Circuit deleted"
|
|
19
|
+
},
|
|
20
|
+
[meta.id]: {
|
|
21
|
+
"plugin.name": "Conductor",
|
|
22
|
+
"content.placeholder": "Enter text..."
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
];
|
|
27
|
+
export {
|
|
28
|
+
translations
|
|
29
|
+
};
|
|
30
|
+
//# sourceMappingURL=translations.mjs.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../src/translations.ts"],
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport { type Resource } from '@dxos/react-ui';\nimport { CanvasBoard } from '@dxos/react-ui-canvas-editor';\n\nimport { meta } from '#meta';\n\nexport const translations = [\n {\n 'en-US': {\n [CanvasBoard.CanvasBoard.typename]: {\n 'typename.label': 'Circuit',\n 'typename.label_zero': 'Circuits',\n 'typename.label_one': 'Circuit',\n 'typename.label_other': 'Circuits',\n 'object-name.placeholder': 'New circuit',\n 'add-object.label': 'Add circuit',\n 'rename-object.label': 'Rename circuit',\n 'delete-object.label': 'Delete circuit',\n 'object-deleted.label': 'Circuit deleted',\n },\n [meta.id]: {\n 'plugin.name': 'Conductor',\n 'content.placeholder': 'Enter text...',\n },\n },\n },\n] as const satisfies Resource[];\n"],
|
|
5
|
+
"mappings": ";;;AAKA,SAASA,mBAAmB;AAE5B,SAASC,YAAY;AAEd,IAAMC,eAAe;EAC1B;IACE,SAAS;MACP,CAACF,YAAYA,YAAYG,QAAQ,GAAG;QAClC,kBAAkB;QAClB,uBAAuB;QACvB,sBAAsB;QACtB,wBAAwB;QACxB,2BAA2B;QAC3B,oBAAoB;QACpB,uBAAuB;QACvB,uBAAuB;QACvB,wBAAwB;MAC1B;MACA,CAACF,KAAKG,EAAE,GAAG;QACT,eAAe;QACf,uBAAuB;MACzB;IACF;EACF;;",
|
|
6
|
+
"names": ["CanvasBoard", "meta", "translations", "typename", "id"]
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConductorPlugin.d.ts","sourceRoot":"","sources":["../../../src/ConductorPlugin.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ConductorPlugin.d.ts","sourceRoot":"","sources":["../../../src/ConductorPlugin.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAS7C,eAAO,MAAM,eAAe,4BAM3B,CAAC;eAEa,eAAe"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ConductorPlugin.test.d.ts","sourceRoot":"","sources":["../../../src/ConductorPlugin.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as Effect from 'effect/Effect';
|
|
2
|
+
import { Capability } from '@dxos/app-framework';
|
|
3
|
+
import { SpaceCapabilities } from '@dxos/plugin-space/types';
|
|
4
|
+
declare const _default: (props: void) => Effect.Effect<Capability.Capability<Capability.InterfaceDef<Readonly<{
|
|
5
|
+
id: string;
|
|
6
|
+
createObject: import("@dxos/plugin-space/types").CreateObject;
|
|
7
|
+
inputSchema?: import("effect/Schema").Schema.AnyNoContext;
|
|
8
|
+
customPanel?: import("react").ComponentType<SpaceCapabilities.CreateObjectCustomPanelProps>;
|
|
9
|
+
}>>>, never, never>;
|
|
10
|
+
export default _default;
|
|
11
|
+
//# sourceMappingURL=create-object.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-object.d.ts","sourceRoot":"","sources":["../../../../src/capabilities/create-object.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAExC,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAGjD,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC"}
|
|
@@ -1,2 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
import { Capability } from '@dxos/app-framework';
|
|
2
|
+
export declare const CreateObject: Capability.LazyCapability<void, Capability.Capability<Capability.InterfaceDef<Readonly<{
|
|
3
|
+
id: string;
|
|
4
|
+
createObject: import("@dxos/plugin-space/types").CreateObject;
|
|
5
|
+
inputSchema?: import("effect/Schema").Schema.AnyNoContext;
|
|
6
|
+
customPanel?: import("react").ComponentType<import("@dxos/plugin-space/types").SpaceCapabilities.CreateObjectCustomPanelProps>;
|
|
7
|
+
}>>>, Error>;
|
|
8
|
+
export declare const ReactSurface: Capability.LazyCapability<void, Capability.Capability<Capability.InterfaceDef<import("@dxos/app-framework/Capabilities").ReactSurface>>, Error>;
|
|
2
9
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/capabilities/index.ts"],"names":[],"mappings":"AAIA,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/capabilities/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjD,eAAO,MAAM,YAAY;;;;;YAAmE,CAAC;AAC7F,eAAO,MAAM,YAAY,iJAAmE,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as Effect from 'effect/Effect';
|
|
2
|
+
import { Capabilities, Capability } from '@dxos/app-framework';
|
|
3
|
+
declare const _default: (props: void) => Effect.Effect<Capability.Capability<Capability.InterfaceDef<Capabilities.ReactSurface>>, never, never>;
|
|
4
|
+
export default _default;
|
|
5
|
+
//# sourceMappingURL=react-surface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"react-surface.d.ts","sourceRoot":"","sources":["../../../../src/capabilities/react-surface.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAGxC,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/index.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { type AppSurface } from '@dxos/app-toolkit/ui';
|
|
3
|
+
import { type CanvasBoard } from '@dxos/react-ui-canvas-editor';
|
|
4
|
+
export type CanvasContainerProps = AppSurface.ObjectArticleProps<CanvasBoard.CanvasBoard>;
|
|
5
|
+
export declare const CanvasContainer: ({ role, subject, attendableId: _attendableId }: CanvasContainerProps) => React.JSX.Element | undefined;
|
|
6
|
+
//# sourceMappingURL=CanvasContainer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CanvasContainer.d.ts","sourceRoot":"","sources":["../../../../../src/containers/CanvasContainer/CanvasContainer.tsx"],"names":[],"mappings":"AAIA,OAAO,KAA+C,MAAM,OAAO,CAAC;AAGpE,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAevD,OAAO,EACL,KAAK,WAAW,EAMjB,MAAM,8BAA8B,CAAC;AAEtC,MAAM,MAAM,oBAAoB,GAAG,UAAU,CAAC,kBAAkB,CAAC,WAAW,CAAC,WAAW,CAAC,CAAC;AAE1F,eAAO,MAAM,eAAe,mDAAoD,oBAAoB,kCA4CnG,CAAC"}
|