@ai-setting/roy-agent-core 1.4.13 → 1.4.14
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/packages/core/src/config/index.js +32 -0
- package/dist/packages/core/src/env/agent/index.js +24 -0
- package/dist/packages/core/src/env/commands/index.js +14 -0
- package/dist/packages/core/src/env/debug/formatters/index.js +11 -0
- package/dist/packages/core/src/env/debug/index.js +26 -0
- package/dist/packages/core/src/env/hook/index.js +29 -0
- package/dist/packages/core/src/env/index.js +81 -0
- package/dist/packages/core/src/env/llm/index.js +40 -0
- package/dist/packages/core/src/env/log-trace/index.js +83 -0
- package/dist/packages/core/src/env/mcp/index.js +39 -0
- package/dist/packages/core/src/env/mcp/tool/index.js +14 -0
- package/dist/packages/core/src/env/memory/built-in/index.js +11 -0
- package/dist/packages/core/src/env/memory/index.js +56 -0
- package/dist/packages/core/src/env/memory/plugin/index.js +36 -0
- package/dist/packages/core/src/env/prompt/index.js +20 -0
- package/dist/packages/core/src/env/session/index.js +25 -0
- package/dist/packages/core/src/env/session/storage/index.js +18 -0
- package/dist/packages/core/src/env/skill/index.js +34 -0
- package/dist/packages/core/src/env/skill/tool/index.js +9 -0
- package/dist/packages/core/src/env/task/delegate/index.js +18 -0
- package/dist/packages/core/src/env/task/hooks/index.js +7 -0
- package/dist/packages/core/src/env/task/index.js +30 -0
- package/dist/packages/core/src/env/task/plugins/index.js +23 -0
- package/dist/packages/core/src/env/task/storage/index.js +14 -0
- package/dist/packages/core/src/env/task/tools/index.js +17 -0
- package/dist/packages/core/src/env/task/tools/operation/index.js +15 -0
- package/dist/{shared/chunk-1d4rwms4.js → packages/core/src/env/tool/built-in/index.js} +4 -4
- package/dist/packages/core/src/env/tool/index.js +39 -0
- package/dist/packages/core/src/env/workflow/decorators/index.js +27 -0
- package/dist/packages/core/src/env/workflow/engine/index.js +28 -0
- package/dist/packages/core/src/env/workflow/index.js +132 -0
- package/dist/packages/core/src/env/workflow/nodes/index.js +19 -0
- package/dist/packages/core/src/env/workflow/service/index.js +13 -0
- package/dist/packages/core/src/env/workflow/storage/index.js +27 -0
- package/dist/packages/core/src/env/workflow/tools/index.js +159 -0
- package/dist/packages/core/src/env/workflow/types/index.js +94 -0
- package/dist/packages/core/src/env/workflow/utils/index.js +637 -0
- package/dist/packages/core/src/index.js +398 -0
- package/dist/shared/@ai-setting/roy-agent-core-04fm8177.js +393 -0
- package/dist/shared/@ai-setting/roy-agent-core-04qgbjbe.js +172 -0
- package/dist/shared/@ai-setting/roy-agent-core-084qqd7t.js +11 -0
- package/dist/shared/@ai-setting/roy-agent-core-0gekht4e.js +1130 -0
- package/dist/shared/@ai-setting/roy-agent-core-0hdry23r.js +419 -0
- package/dist/shared/{chunk-ze20rksg.js → @ai-setting/roy-agent-core-0sgn3de4.js} +2 -2
- package/dist/shared/@ai-setting/roy-agent-core-12x57kf1.js +286 -0
- package/dist/shared/@ai-setting/roy-agent-core-1f3xrrm6.js +393 -0
- package/dist/shared/{chunk-q9j99fsm.js → @ai-setting/roy-agent-core-1k28kg7h.js} +6 -6
- package/dist/shared/{chunk-2b5kbhx3.js → @ai-setting/roy-agent-core-1z1zv5g8.js} +9 -117
- package/dist/shared/@ai-setting/roy-agent-core-2hqxnaf3.js +851 -0
- package/dist/shared/@ai-setting/roy-agent-core-3dfq8awb.js +587 -0
- package/dist/shared/@ai-setting/roy-agent-core-3takar0s.js +93 -0
- package/dist/shared/@ai-setting/roy-agent-core-3tnb2005.js +117 -0
- package/dist/shared/@ai-setting/roy-agent-core-4vmcvkav.js +14 -0
- package/dist/shared/{chunk-25x2pdtp.js → @ai-setting/roy-agent-core-4ws8atva.js} +2 -2
- package/dist/shared/@ai-setting/roy-agent-core-5fbp24se.js +603 -0
- package/dist/shared/@ai-setting/roy-agent-core-5my94ywp.js +66 -0
- package/dist/shared/{chunk-rncy3rtd.js → @ai-setting/roy-agent-core-6j0zcmwk.js} +128 -1122
- package/dist/shared/@ai-setting/roy-agent-core-6w4pmxc7.js +266 -0
- package/dist/shared/{chunk-yqmx37vm.js → @ai-setting/roy-agent-core-7vrk3add.js} +2 -2
- package/dist/shared/@ai-setting/roy-agent-core-8dvbn7tw.js +64 -0
- package/dist/shared/@ai-setting/roy-agent-core-8mbmrwzs.js +171 -0
- package/dist/shared/@ai-setting/roy-agent-core-8wzz66qe.js +620 -0
- package/dist/shared/@ai-setting/roy-agent-core-9ykq91jc.js +762 -0
- package/dist/shared/@ai-setting/roy-agent-core-dde19zke.js +1305 -0
- package/dist/shared/@ai-setting/roy-agent-core-f7g67gce.js +913 -0
- package/dist/shared/@ai-setting/roy-agent-core-fq5mtxsy.js +341 -0
- package/dist/shared/@ai-setting/roy-agent-core-fvd9g6k8.js +1205 -0
- package/dist/shared/@ai-setting/roy-agent-core-gv1hrn3x.js +378 -0
- package/dist/shared/@ai-setting/roy-agent-core-gy0wp5h7.js +213 -0
- package/dist/shared/{chunk-mf5xqbdh.js → @ai-setting/roy-agent-core-hyza1gm7.js} +3 -2
- package/dist/shared/{chunk-1qwabsm0.js → @ai-setting/roy-agent-core-j8zx62zr.js} +2 -2
- package/dist/shared/@ai-setting/roy-agent-core-jb2exr0d.js +442 -0
- package/dist/shared/@ai-setting/roy-agent-core-jv3b7v9w.js +57 -0
- package/dist/shared/@ai-setting/roy-agent-core-k1rxf9ya.js +513 -0
- package/dist/shared/@ai-setting/roy-agent-core-kydc9nwb.js +60 -0
- package/dist/shared/@ai-setting/roy-agent-core-m2x48hw6.js +97 -0
- package/dist/shared/@ai-setting/roy-agent-core-m6y668cc.js +377 -0
- package/dist/shared/{chunk-1aakcfp1.js → @ai-setting/roy-agent-core-nczzf0ms.js} +3 -3
- package/dist/shared/@ai-setting/roy-agent-core-nfj6knp5.js +36 -0
- package/dist/shared/@ai-setting/roy-agent-core-ntrp979d.js +204 -0
- package/dist/shared/@ai-setting/roy-agent-core-pd7g8z5v.js +1387 -0
- package/dist/shared/@ai-setting/roy-agent-core-pzk1syce.js +14 -0
- package/dist/shared/@ai-setting/roy-agent-core-q50tg9m2.js +862 -0
- package/dist/shared/{chunk-9qzt1v1p.js → @ai-setting/roy-agent-core-qg9tcaph.js} +3 -2
- package/dist/shared/{chunk-91bas8w5.js → @ai-setting/roy-agent-core-qhyerewk.js} +5 -5
- package/dist/shared/{chunk-1pf5mfgd.js → @ai-setting/roy-agent-core-qxybm159.js} +3 -3
- package/dist/shared/{chunk-g6j5n3gv.js → @ai-setting/roy-agent-core-rh9dpkpw.js} +10 -10
- package/dist/shared/{chunk-0q6s9wm6.js → @ai-setting/roy-agent-core-rr9p1g43.js} +7 -51
- package/dist/shared/@ai-setting/roy-agent-core-sbzvpfn7.js +284 -0
- package/dist/shared/@ai-setting/roy-agent-core-t22nqt4d.js +788 -0
- package/dist/shared/{chunk-t1rh6jtm.js → @ai-setting/roy-agent-core-tkr5ynkh.js} +8 -13
- package/dist/shared/@ai-setting/roy-agent-core-v4aabsf0.js +303 -0
- package/dist/shared/@ai-setting/roy-agent-core-w75rafhy.js +202 -0
- package/dist/shared/@ai-setting/roy-agent-core-w76hqkmg.js +584 -0
- package/dist/shared/@ai-setting/roy-agent-core-yfbgwes2.js +408 -0
- package/dist/shared/{chunk-a9qmy3sc.js → @ai-setting/roy-agent-core-yn761yve.js} +7 -4
- package/dist/shared/@ai-setting/roy-agent-core-yrzmn4m1.js +492 -0
- package/dist/shared/@ai-setting/roy-agent-core-yt8wdh2w.js +206 -0
- package/package.json +8 -7
- package/dist/index.d.ts +0 -7825
- package/dist/index.js +0 -16551
- package/dist/shared/chunk-hs7tbmje.js +0 -24
- /package/dist/shared/{chunk-wbkh7wat.js → @ai-setting/roy-agent-core-fs0mn2jk.js} +0 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ConfigComponent,
|
|
3
|
+
ConfigFileNotFoundError,
|
|
4
|
+
ConfigSourceNotFoundError,
|
|
5
|
+
EnvSource,
|
|
6
|
+
FileSource,
|
|
7
|
+
MemorySource,
|
|
8
|
+
parseJSONC,
|
|
9
|
+
parseJSONCWithEnv,
|
|
10
|
+
parseJSONCWithProtocols,
|
|
11
|
+
substituteEnvVars,
|
|
12
|
+
substituteProtocolRefs
|
|
13
|
+
} from "../../../../shared/@ai-setting/roy-agent-core-fvd9g6k8.js";
|
|
14
|
+
import"../../../../shared/@ai-setting/roy-agent-core-5my94ywp.js";
|
|
15
|
+
import"../../../../shared/@ai-setting/roy-agent-core-jv3b7v9w.js";
|
|
16
|
+
import"../../../../shared/@ai-setting/roy-agent-core-m2x48hw6.js";
|
|
17
|
+
import"../../../../shared/@ai-setting/roy-agent-core-084qqd7t.js";
|
|
18
|
+
import"../../../../shared/@ai-setting/roy-agent-core-w75rafhy.js";
|
|
19
|
+
import"../../../../shared/@ai-setting/roy-agent-core-fs0mn2jk.js";
|
|
20
|
+
export {
|
|
21
|
+
substituteProtocolRefs,
|
|
22
|
+
substituteEnvVars,
|
|
23
|
+
parseJSONCWithProtocols,
|
|
24
|
+
parseJSONCWithEnv,
|
|
25
|
+
parseJSONC,
|
|
26
|
+
MemorySource,
|
|
27
|
+
FileSource,
|
|
28
|
+
EnvSource,
|
|
29
|
+
ConfigSourceNotFoundError,
|
|
30
|
+
ConfigFileNotFoundError,
|
|
31
|
+
ConfigComponent
|
|
32
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AgentComponent,
|
|
3
|
+
AgentComponentConfigSchema
|
|
4
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-0gekht4e.js";
|
|
5
|
+
import {
|
|
6
|
+
SummaryAgent
|
|
7
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-gv1hrn3x.js";
|
|
8
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-ntrp979d.js";
|
|
9
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-3takar0s.js";
|
|
10
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-8dvbn7tw.js";
|
|
11
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-04qgbjbe.js";
|
|
12
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-jv3b7v9w.js";
|
|
13
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-m2x48hw6.js";
|
|
14
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-084qqd7t.js";
|
|
15
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-w75rafhy.js";
|
|
16
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-yn761yve.js";
|
|
17
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-1k28kg7h.js";
|
|
18
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-j8zx62zr.js";
|
|
19
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-fs0mn2jk.js";
|
|
20
|
+
export {
|
|
21
|
+
SummaryAgent,
|
|
22
|
+
AgentComponentConfigSchema,
|
|
23
|
+
AgentComponent
|
|
24
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import {
|
|
2
|
+
CommandsComponent
|
|
3
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-yrzmn4m1.js";
|
|
4
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-jv3b7v9w.js";
|
|
5
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-m2x48hw6.js";
|
|
6
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-084qqd7t.js";
|
|
7
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-w75rafhy.js";
|
|
8
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-yn761yve.js";
|
|
9
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-1k28kg7h.js";
|
|
10
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-j8zx62zr.js";
|
|
11
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-fs0mn2jk.js";
|
|
12
|
+
export {
|
|
13
|
+
CommandsComponent
|
|
14
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ReplFormatter,
|
|
3
|
+
TraceFormatter,
|
|
4
|
+
TreeFormatter
|
|
5
|
+
} from "../../../../../../shared/@ai-setting/roy-agent-core-w76hqkmg.js";
|
|
6
|
+
import"../../../../../../shared/@ai-setting/roy-agent-core-fs0mn2jk.js";
|
|
7
|
+
export {
|
|
8
|
+
TreeFormatter,
|
|
9
|
+
TraceFormatter,
|
|
10
|
+
ReplFormatter
|
|
11
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import {
|
|
2
|
+
DebugComponent,
|
|
3
|
+
LogReader,
|
|
4
|
+
RegexParser,
|
|
5
|
+
SpanBuilder,
|
|
6
|
+
SpanDbReader
|
|
7
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-q50tg9m2.js";
|
|
8
|
+
import {
|
|
9
|
+
ReplFormatter,
|
|
10
|
+
TraceFormatter,
|
|
11
|
+
TreeFormatter
|
|
12
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-w76hqkmg.js";
|
|
13
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-m2x48hw6.js";
|
|
14
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-084qqd7t.js";
|
|
15
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-w75rafhy.js";
|
|
16
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-fs0mn2jk.js";
|
|
17
|
+
export {
|
|
18
|
+
TreeFormatter,
|
|
19
|
+
TraceFormatter,
|
|
20
|
+
SpanDbReader,
|
|
21
|
+
SpanBuilder,
|
|
22
|
+
ReplFormatter,
|
|
23
|
+
RegexParser,
|
|
24
|
+
LogReader,
|
|
25
|
+
DebugComponent
|
|
26
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import {
|
|
2
|
+
createHook,
|
|
3
|
+
createPriorityHook
|
|
4
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-084qqd7t.js";
|
|
5
|
+
import {
|
|
6
|
+
AgentHookPoints,
|
|
7
|
+
HookManager,
|
|
8
|
+
LLMHookPoints,
|
|
9
|
+
ToolHookPoints,
|
|
10
|
+
executeAgentHook,
|
|
11
|
+
executeAgentHookWithIntervention,
|
|
12
|
+
executeLLMHook,
|
|
13
|
+
executeToolHook,
|
|
14
|
+
globalHookManager
|
|
15
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-w75rafhy.js";
|
|
16
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-fs0mn2jk.js";
|
|
17
|
+
export {
|
|
18
|
+
globalHookManager,
|
|
19
|
+
executeToolHook,
|
|
20
|
+
executeLLMHook,
|
|
21
|
+
executeAgentHookWithIntervention,
|
|
22
|
+
executeAgentHook,
|
|
23
|
+
createPriorityHook,
|
|
24
|
+
createHook,
|
|
25
|
+
ToolHookPoints,
|
|
26
|
+
LLMHookPoints,
|
|
27
|
+
HookManager,
|
|
28
|
+
AgentHookPoints
|
|
29
|
+
};
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import {
|
|
2
|
+
BaseEnvironment,
|
|
3
|
+
EventSourceAgentHandler,
|
|
4
|
+
EventSourceComponent,
|
|
5
|
+
getDefaultConfigForType,
|
|
6
|
+
isValidEventSourceType,
|
|
7
|
+
validateEventSourceConfig
|
|
8
|
+
} from "../../../../shared/@ai-setting/roy-agent-core-pd7g8z5v.js";
|
|
9
|
+
import {
|
|
10
|
+
McpComponent
|
|
11
|
+
} from "../../../../shared/@ai-setting/roy-agent-core-3dfq8awb.js";
|
|
12
|
+
import"../../../../shared/@ai-setting/roy-agent-core-v4aabsf0.js";
|
|
13
|
+
import {
|
|
14
|
+
XDG_PATHS,
|
|
15
|
+
getXDGPath,
|
|
16
|
+
getXDGPaths
|
|
17
|
+
} from "../../../../shared/@ai-setting/roy-agent-core-5my94ywp.js";
|
|
18
|
+
import {
|
|
19
|
+
TaskComponent
|
|
20
|
+
} from "../../../../shared/@ai-setting/roy-agent-core-k1rxf9ya.js";
|
|
21
|
+
import"../../../../shared/@ai-setting/roy-agent-core-8wzz66qe.js";
|
|
22
|
+
import"../../../../shared/@ai-setting/roy-agent-core-12x57kf1.js";
|
|
23
|
+
import"../../../../shared/@ai-setting/roy-agent-core-gy0wp5h7.js";
|
|
24
|
+
import"../../../../shared/@ai-setting/roy-agent-core-t22nqt4d.js";
|
|
25
|
+
import"../../../../shared/@ai-setting/roy-agent-core-pzk1syce.js";
|
|
26
|
+
import {
|
|
27
|
+
WorkflowComponent
|
|
28
|
+
} from "../../../../shared/@ai-setting/roy-agent-core-6w4pmxc7.js";
|
|
29
|
+
import"../../../../shared/@ai-setting/roy-agent-core-1z1zv5g8.js";
|
|
30
|
+
import"../../../../shared/@ai-setting/roy-agent-core-nfj6knp5.js";
|
|
31
|
+
import"../../../../shared/@ai-setting/roy-agent-core-6j0zcmwk.js";
|
|
32
|
+
import"../../../../shared/@ai-setting/roy-agent-core-rr9p1g43.js";
|
|
33
|
+
import"../../../../shared/@ai-setting/roy-agent-core-5fbp24se.js";
|
|
34
|
+
import"../../../../shared/@ai-setting/roy-agent-core-fq5mtxsy.js";
|
|
35
|
+
import"../../../../shared/@ai-setting/roy-agent-core-sbzvpfn7.js";
|
|
36
|
+
import"../../../../shared/@ai-setting/roy-agent-core-3tnb2005.js";
|
|
37
|
+
import"../../../../shared/@ai-setting/roy-agent-core-yt8wdh2w.js";
|
|
38
|
+
import {
|
|
39
|
+
AgentComponent,
|
|
40
|
+
AgentComponentConfigSchema
|
|
41
|
+
} from "../../../../shared/@ai-setting/roy-agent-core-0gekht4e.js";
|
|
42
|
+
import"../../../../shared/@ai-setting/roy-agent-core-gv1hrn3x.js";
|
|
43
|
+
import"../../../../shared/@ai-setting/roy-agent-core-ntrp979d.js";
|
|
44
|
+
import"../../../../shared/@ai-setting/roy-agent-core-3takar0s.js";
|
|
45
|
+
import"../../../../shared/@ai-setting/roy-agent-core-8dvbn7tw.js";
|
|
46
|
+
import"../../../../shared/@ai-setting/roy-agent-core-04qgbjbe.js";
|
|
47
|
+
import"../../../../shared/@ai-setting/roy-agent-core-jv3b7v9w.js";
|
|
48
|
+
import {
|
|
49
|
+
BaseComponent
|
|
50
|
+
} from "../../../../shared/@ai-setting/roy-agent-core-m2x48hw6.js";
|
|
51
|
+
import {
|
|
52
|
+
createHook,
|
|
53
|
+
createPriorityHook
|
|
54
|
+
} from "../../../../shared/@ai-setting/roy-agent-core-084qqd7t.js";
|
|
55
|
+
import {
|
|
56
|
+
HookManager
|
|
57
|
+
} from "../../../../shared/@ai-setting/roy-agent-core-w75rafhy.js";
|
|
58
|
+
import"../../../../shared/@ai-setting/roy-agent-core-yn761yve.js";
|
|
59
|
+
import"../../../../shared/@ai-setting/roy-agent-core-1k28kg7h.js";
|
|
60
|
+
import"../../../../shared/@ai-setting/roy-agent-core-j8zx62zr.js";
|
|
61
|
+
import"../../../../shared/@ai-setting/roy-agent-core-fs0mn2jk.js";
|
|
62
|
+
export {
|
|
63
|
+
validateEventSourceConfig,
|
|
64
|
+
isValidEventSourceType,
|
|
65
|
+
getXDGPaths,
|
|
66
|
+
getXDGPath,
|
|
67
|
+
getDefaultConfigForType,
|
|
68
|
+
createPriorityHook,
|
|
69
|
+
createHook,
|
|
70
|
+
XDG_PATHS,
|
|
71
|
+
WorkflowComponent,
|
|
72
|
+
TaskComponent,
|
|
73
|
+
McpComponent,
|
|
74
|
+
HookManager,
|
|
75
|
+
EventSourceComponent,
|
|
76
|
+
EventSourceAgentHandler,
|
|
77
|
+
BaseEnvironment,
|
|
78
|
+
BaseComponent,
|
|
79
|
+
AgentComponentConfigSchema,
|
|
80
|
+
AgentComponent
|
|
81
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import {
|
|
2
|
+
LLMComponent,
|
|
3
|
+
LLMConfigSchema,
|
|
4
|
+
LLMDefaultConfigSchema,
|
|
5
|
+
LLMHooks,
|
|
6
|
+
LLMTransform,
|
|
7
|
+
ModelLimitsSchema,
|
|
8
|
+
ProviderCapabilitiesSchema,
|
|
9
|
+
ProviderConfigSchema,
|
|
10
|
+
ProviderManager,
|
|
11
|
+
createInvokeConfig,
|
|
12
|
+
invoke,
|
|
13
|
+
invokeNonStream,
|
|
14
|
+
parseModelString
|
|
15
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-dde19zke.js";
|
|
16
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-3takar0s.js";
|
|
17
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-04qgbjbe.js";
|
|
18
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-jv3b7v9w.js";
|
|
19
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-m2x48hw6.js";
|
|
20
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-084qqd7t.js";
|
|
21
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-w75rafhy.js";
|
|
22
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-yn761yve.js";
|
|
23
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-1k28kg7h.js";
|
|
24
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-j8zx62zr.js";
|
|
25
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-fs0mn2jk.js";
|
|
26
|
+
export {
|
|
27
|
+
parseModelString,
|
|
28
|
+
invokeNonStream,
|
|
29
|
+
invoke,
|
|
30
|
+
createInvokeConfig,
|
|
31
|
+
ProviderManager,
|
|
32
|
+
ProviderConfigSchema,
|
|
33
|
+
ProviderCapabilitiesSchema,
|
|
34
|
+
ModelLimitsSchema,
|
|
35
|
+
LLMTransform,
|
|
36
|
+
LLMHooks,
|
|
37
|
+
LLMDefaultConfigSchema,
|
|
38
|
+
LLMConfigSchema,
|
|
39
|
+
LLMComponent
|
|
40
|
+
};
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import {
|
|
2
|
+
LogTraceComponent,
|
|
3
|
+
LogTraceConfigSchema,
|
|
4
|
+
getDefaultLogDir,
|
|
5
|
+
getDefaultSpanDbPath,
|
|
6
|
+
getTraceparentHeader,
|
|
7
|
+
injectToEnv,
|
|
8
|
+
injectToEnvFromCarrier,
|
|
9
|
+
injectToEnvWithContext
|
|
10
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-0hdry23r.js";
|
|
11
|
+
import {
|
|
12
|
+
Traced,
|
|
13
|
+
TracedAs,
|
|
14
|
+
TracedLightweight,
|
|
15
|
+
wrapFunction
|
|
16
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-04qgbjbe.js";
|
|
17
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-jv3b7v9w.js";
|
|
18
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-m2x48hw6.js";
|
|
19
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-084qqd7t.js";
|
|
20
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-w75rafhy.js";
|
|
21
|
+
import {
|
|
22
|
+
createLogger,
|
|
23
|
+
getLogDir,
|
|
24
|
+
getLogDirOverride,
|
|
25
|
+
getLogFile,
|
|
26
|
+
getLogLevel,
|
|
27
|
+
getLogLevels,
|
|
28
|
+
getMaxOutput,
|
|
29
|
+
isQuietMode,
|
|
30
|
+
setConfigComponent,
|
|
31
|
+
setLogDirOverride,
|
|
32
|
+
setQuietMode,
|
|
33
|
+
simplifyFilePath
|
|
34
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-yn761yve.js";
|
|
35
|
+
import {
|
|
36
|
+
OTelTracerProvider,
|
|
37
|
+
SpanKind,
|
|
38
|
+
SpanStatus,
|
|
39
|
+
getTracerProvider,
|
|
40
|
+
parse,
|
|
41
|
+
propagation,
|
|
42
|
+
resetTracerProvider,
|
|
43
|
+
serialize
|
|
44
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-1k28kg7h.js";
|
|
45
|
+
import {
|
|
46
|
+
SQLiteSpanStorage
|
|
47
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-j8zx62zr.js";
|
|
48
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-fs0mn2jk.js";
|
|
49
|
+
export {
|
|
50
|
+
wrapFunction,
|
|
51
|
+
simplifyFilePath,
|
|
52
|
+
setQuietMode,
|
|
53
|
+
setConfigComponent as setLoggerConfigComponent,
|
|
54
|
+
setLogDirOverride,
|
|
55
|
+
serialize,
|
|
56
|
+
resetTracerProvider,
|
|
57
|
+
propagation,
|
|
58
|
+
parse,
|
|
59
|
+
isQuietMode,
|
|
60
|
+
injectToEnvWithContext,
|
|
61
|
+
injectToEnvFromCarrier,
|
|
62
|
+
injectToEnv,
|
|
63
|
+
getTracerProvider,
|
|
64
|
+
getTraceparentHeader,
|
|
65
|
+
getMaxOutput,
|
|
66
|
+
getLogLevels,
|
|
67
|
+
getLogLevel,
|
|
68
|
+
getLogFile,
|
|
69
|
+
getLogDirOverride,
|
|
70
|
+
getLogDir,
|
|
71
|
+
getDefaultSpanDbPath,
|
|
72
|
+
getDefaultLogDir,
|
|
73
|
+
createLogger,
|
|
74
|
+
TracedLightweight,
|
|
75
|
+
TracedAs,
|
|
76
|
+
Traced,
|
|
77
|
+
SpanStatus,
|
|
78
|
+
SpanKind,
|
|
79
|
+
SQLiteSpanStorage,
|
|
80
|
+
OTelTracerProvider,
|
|
81
|
+
LogTraceConfigSchema,
|
|
82
|
+
LogTraceComponent
|
|
83
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import {
|
|
2
|
+
DEFAULT_MCP_CONFIG,
|
|
3
|
+
MCP_CONFIG_KEYS,
|
|
4
|
+
McpComponent,
|
|
5
|
+
McpLoader,
|
|
6
|
+
McpScanner,
|
|
7
|
+
McpServerConfigSchema,
|
|
8
|
+
McpServerLocalConfigSchema,
|
|
9
|
+
McpServerRemoteConfigSchema,
|
|
10
|
+
getMcpPathPriority
|
|
11
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-3dfq8awb.js";
|
|
12
|
+
import {
|
|
13
|
+
adaptMcpTool,
|
|
14
|
+
convertInputSchemaToZod,
|
|
15
|
+
createMcpToolsDescription
|
|
16
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-v4aabsf0.js";
|
|
17
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-3takar0s.js";
|
|
18
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-jv3b7v9w.js";
|
|
19
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-m2x48hw6.js";
|
|
20
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-084qqd7t.js";
|
|
21
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-w75rafhy.js";
|
|
22
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-yn761yve.js";
|
|
23
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-1k28kg7h.js";
|
|
24
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-j8zx62zr.js";
|
|
25
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-fs0mn2jk.js";
|
|
26
|
+
export {
|
|
27
|
+
getMcpPathPriority,
|
|
28
|
+
createMcpToolsDescription,
|
|
29
|
+
convertInputSchemaToZod,
|
|
30
|
+
adaptMcpTool,
|
|
31
|
+
McpServerRemoteConfigSchema,
|
|
32
|
+
McpServerLocalConfigSchema,
|
|
33
|
+
McpServerConfigSchema,
|
|
34
|
+
McpScanner,
|
|
35
|
+
McpLoader,
|
|
36
|
+
McpComponent,
|
|
37
|
+
MCP_CONFIG_KEYS,
|
|
38
|
+
DEFAULT_MCP_CONFIG
|
|
39
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import {
|
|
2
|
+
adaptMcpTool,
|
|
3
|
+
convertInputSchemaToZod,
|
|
4
|
+
createMcpToolsDescription
|
|
5
|
+
} from "../../../../../../shared/@ai-setting/roy-agent-core-v4aabsf0.js";
|
|
6
|
+
import"../../../../../../shared/@ai-setting/roy-agent-core-yn761yve.js";
|
|
7
|
+
import"../../../../../../shared/@ai-setting/roy-agent-core-1k28kg7h.js";
|
|
8
|
+
import"../../../../../../shared/@ai-setting/roy-agent-core-j8zx62zr.js";
|
|
9
|
+
import"../../../../../../shared/@ai-setting/roy-agent-core-fs0mn2jk.js";
|
|
10
|
+
export {
|
|
11
|
+
createMcpToolsDescription,
|
|
12
|
+
convertInputSchemaToZod,
|
|
13
|
+
adaptMcpTool
|
|
14
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import {
|
|
2
|
+
RecallMemorySchema,
|
|
3
|
+
RecordMemorySchema,
|
|
4
|
+
createMemoryTools
|
|
5
|
+
} from "../../../../../../shared/@ai-setting/roy-agent-core-8mbmrwzs.js";
|
|
6
|
+
import"../../../../../../shared/@ai-setting/roy-agent-core-fs0mn2jk.js";
|
|
7
|
+
export {
|
|
8
|
+
createMemoryTools,
|
|
9
|
+
RecordMemorySchema,
|
|
10
|
+
RecallMemorySchema
|
|
11
|
+
};
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import {
|
|
2
|
+
DEFAULT_MEMORY_CONFIG,
|
|
3
|
+
MemoryComponent,
|
|
4
|
+
SOURCE_PRIORITY,
|
|
5
|
+
getSourcePriority
|
|
6
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-1f3xrrm6.js";
|
|
7
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-jv3b7v9w.js";
|
|
8
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-m2x48hw6.js";
|
|
9
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-084qqd7t.js";
|
|
10
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-w75rafhy.js";
|
|
11
|
+
import {
|
|
12
|
+
RecallMemorySchema,
|
|
13
|
+
RecordMemorySchema
|
|
14
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-8mbmrwzs.js";
|
|
15
|
+
import {
|
|
16
|
+
GLOBAL_MEMORY_AGENT_PROMPT,
|
|
17
|
+
MemoryManager,
|
|
18
|
+
MemoryPlugin,
|
|
19
|
+
PROJECT_MEMORY_AGENT_PROMPT,
|
|
20
|
+
applyMemoryResult,
|
|
21
|
+
buildGlobalInput,
|
|
22
|
+
buildProjectInput,
|
|
23
|
+
createEmptyResult,
|
|
24
|
+
createMemoryAgent,
|
|
25
|
+
createMemoryPlugin,
|
|
26
|
+
formatMemoryInput,
|
|
27
|
+
generateProjectSummary,
|
|
28
|
+
parseMemoryAgentOutput,
|
|
29
|
+
recallMemory
|
|
30
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-yfbgwes2.js";
|
|
31
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-yn761yve.js";
|
|
32
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-1k28kg7h.js";
|
|
33
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-j8zx62zr.js";
|
|
34
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-fs0mn2jk.js";
|
|
35
|
+
export {
|
|
36
|
+
recallMemory,
|
|
37
|
+
parseMemoryAgentOutput,
|
|
38
|
+
getSourcePriority,
|
|
39
|
+
generateProjectSummary,
|
|
40
|
+
formatMemoryInput,
|
|
41
|
+
createMemoryPlugin,
|
|
42
|
+
createMemoryAgent,
|
|
43
|
+
createEmptyResult,
|
|
44
|
+
buildProjectInput,
|
|
45
|
+
buildGlobalInput,
|
|
46
|
+
applyMemoryResult,
|
|
47
|
+
SOURCE_PRIORITY,
|
|
48
|
+
RecordMemorySchema,
|
|
49
|
+
RecallMemorySchema,
|
|
50
|
+
PROJECT_MEMORY_AGENT_PROMPT,
|
|
51
|
+
MemoryPlugin,
|
|
52
|
+
MemoryManager,
|
|
53
|
+
MemoryComponent,
|
|
54
|
+
GLOBAL_MEMORY_AGENT_PROMPT,
|
|
55
|
+
DEFAULT_MEMORY_CONFIG
|
|
56
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import {
|
|
2
|
+
GLOBAL_MEMORY_AGENT_PROMPT,
|
|
3
|
+
MemoryManager,
|
|
4
|
+
MemoryPlugin,
|
|
5
|
+
PROJECT_MEMORY_AGENT_PROMPT,
|
|
6
|
+
applyMemoryResult,
|
|
7
|
+
buildGlobalInput,
|
|
8
|
+
buildProjectInput,
|
|
9
|
+
createEmptyResult,
|
|
10
|
+
createMemoryAgent,
|
|
11
|
+
createMemoryPlugin,
|
|
12
|
+
formatMemoryInput,
|
|
13
|
+
generateProjectSummary,
|
|
14
|
+
parseMemoryAgentOutput,
|
|
15
|
+
recallMemory
|
|
16
|
+
} from "../../../../../../shared/@ai-setting/roy-agent-core-yfbgwes2.js";
|
|
17
|
+
import"../../../../../../shared/@ai-setting/roy-agent-core-yn761yve.js";
|
|
18
|
+
import"../../../../../../shared/@ai-setting/roy-agent-core-1k28kg7h.js";
|
|
19
|
+
import"../../../../../../shared/@ai-setting/roy-agent-core-j8zx62zr.js";
|
|
20
|
+
import"../../../../../../shared/@ai-setting/roy-agent-core-fs0mn2jk.js";
|
|
21
|
+
export {
|
|
22
|
+
recallMemory,
|
|
23
|
+
parseMemoryAgentOutput,
|
|
24
|
+
generateProjectSummary,
|
|
25
|
+
formatMemoryInput,
|
|
26
|
+
createMemoryPlugin,
|
|
27
|
+
createMemoryAgent,
|
|
28
|
+
createEmptyResult,
|
|
29
|
+
buildProjectInput,
|
|
30
|
+
buildGlobalInput,
|
|
31
|
+
applyMemoryResult,
|
|
32
|
+
PROJECT_MEMORY_AGENT_PROMPT,
|
|
33
|
+
MemoryPlugin,
|
|
34
|
+
MemoryManager,
|
|
35
|
+
GLOBAL_MEMORY_AGENT_PROMPT
|
|
36
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import {
|
|
2
|
+
PromptComponent,
|
|
3
|
+
PromptConfigSchema,
|
|
4
|
+
PromptPathSchema,
|
|
5
|
+
PromptRenderer
|
|
6
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-f7g67gce.js";
|
|
7
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-jv3b7v9w.js";
|
|
8
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-m2x48hw6.js";
|
|
9
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-084qqd7t.js";
|
|
10
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-w75rafhy.js";
|
|
11
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-yn761yve.js";
|
|
12
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-1k28kg7h.js";
|
|
13
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-j8zx62zr.js";
|
|
14
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-fs0mn2jk.js";
|
|
15
|
+
export {
|
|
16
|
+
PromptRenderer,
|
|
17
|
+
PromptPathSchema,
|
|
18
|
+
PromptConfigSchema,
|
|
19
|
+
PromptComponent
|
|
20
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import {
|
|
2
|
+
SessionComponent
|
|
3
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-9ykq91jc.js";
|
|
4
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-0sgn3de4.js";
|
|
5
|
+
import {
|
|
6
|
+
MemorySessionStore
|
|
7
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-2hqxnaf3.js";
|
|
8
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-gv1hrn3x.js";
|
|
9
|
+
import {
|
|
10
|
+
SessionMessageConverter
|
|
11
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-ntrp979d.js";
|
|
12
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-04qgbjbe.js";
|
|
13
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-jv3b7v9w.js";
|
|
14
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-m2x48hw6.js";
|
|
15
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-084qqd7t.js";
|
|
16
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-w75rafhy.js";
|
|
17
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-yn761yve.js";
|
|
18
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-1k28kg7h.js";
|
|
19
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-j8zx62zr.js";
|
|
20
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-fs0mn2jk.js";
|
|
21
|
+
export {
|
|
22
|
+
SessionMessageConverter,
|
|
23
|
+
SessionComponent,
|
|
24
|
+
MemorySessionStore
|
|
25
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import {
|
|
2
|
+
MemorySessionStore,
|
|
3
|
+
SQLiteSessionStore,
|
|
4
|
+
getDefaultDataDir,
|
|
5
|
+
getDefaultSessionDbPath
|
|
6
|
+
} from "../../../../../../shared/@ai-setting/roy-agent-core-2hqxnaf3.js";
|
|
7
|
+
import"../../../../../../shared/@ai-setting/roy-agent-core-ntrp979d.js";
|
|
8
|
+
import"../../../../../../shared/@ai-setting/roy-agent-core-04qgbjbe.js";
|
|
9
|
+
import"../../../../../../shared/@ai-setting/roy-agent-core-yn761yve.js";
|
|
10
|
+
import"../../../../../../shared/@ai-setting/roy-agent-core-1k28kg7h.js";
|
|
11
|
+
import"../../../../../../shared/@ai-setting/roy-agent-core-j8zx62zr.js";
|
|
12
|
+
import"../../../../../../shared/@ai-setting/roy-agent-core-fs0mn2jk.js";
|
|
13
|
+
export {
|
|
14
|
+
getDefaultSessionDbPath,
|
|
15
|
+
getDefaultDataDir,
|
|
16
|
+
SQLiteSessionStore,
|
|
17
|
+
MemorySessionStore
|
|
18
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import {
|
|
2
|
+
DEFAULT_SKILL_CONFIG,
|
|
3
|
+
SOURCE_PRIORITY,
|
|
4
|
+
SkillComponent,
|
|
5
|
+
SkillScanner,
|
|
6
|
+
getSourcePriority,
|
|
7
|
+
parseFrontmatter,
|
|
8
|
+
parseSkillFile
|
|
9
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-m6y668cc.js";
|
|
10
|
+
import {
|
|
11
|
+
SkillToolSchema,
|
|
12
|
+
buildSkillDescription,
|
|
13
|
+
createSkillTool
|
|
14
|
+
} from "../../../../../shared/@ai-setting/roy-agent-core-kydc9nwb.js";
|
|
15
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-jv3b7v9w.js";
|
|
16
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-m2x48hw6.js";
|
|
17
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-084qqd7t.js";
|
|
18
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-w75rafhy.js";
|
|
19
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-yn761yve.js";
|
|
20
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-1k28kg7h.js";
|
|
21
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-j8zx62zr.js";
|
|
22
|
+
import"../../../../../shared/@ai-setting/roy-agent-core-fs0mn2jk.js";
|
|
23
|
+
export {
|
|
24
|
+
parseSkillFile,
|
|
25
|
+
parseFrontmatter,
|
|
26
|
+
getSourcePriority,
|
|
27
|
+
createSkillTool,
|
|
28
|
+
buildSkillDescription,
|
|
29
|
+
SkillToolSchema,
|
|
30
|
+
SkillScanner,
|
|
31
|
+
SkillComponent,
|
|
32
|
+
SOURCE_PRIORITY,
|
|
33
|
+
DEFAULT_SKILL_CONFIG
|
|
34
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import {
|
|
2
|
+
BackgroundTaskManager,
|
|
3
|
+
TaskEventTypes,
|
|
4
|
+
createDelegateTool,
|
|
5
|
+
createStopTool
|
|
6
|
+
} from "../../../../../../shared/@ai-setting/roy-agent-core-t22nqt4d.js";
|
|
7
|
+
import"../../../../../../shared/@ai-setting/roy-agent-core-pzk1syce.js";
|
|
8
|
+
import"../../../../../../shared/@ai-setting/roy-agent-core-w75rafhy.js";
|
|
9
|
+
import"../../../../../../shared/@ai-setting/roy-agent-core-yn761yve.js";
|
|
10
|
+
import"../../../../../../shared/@ai-setting/roy-agent-core-1k28kg7h.js";
|
|
11
|
+
import"../../../../../../shared/@ai-setting/roy-agent-core-j8zx62zr.js";
|
|
12
|
+
import"../../../../../../shared/@ai-setting/roy-agent-core-fs0mn2jk.js";
|
|
13
|
+
export {
|
|
14
|
+
createStopTool,
|
|
15
|
+
createDelegateTool,
|
|
16
|
+
TaskEventTypes,
|
|
17
|
+
BackgroundTaskManager
|
|
18
|
+
};
|