@ai-setting/roy-agent-core 1.5.15-test → 1.5.17-beta.1
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/config/index.d.ts +1250 -0
- package/dist/config/index.js +32 -0
- package/dist/env/agent/index.d.ts +2279 -0
- package/dist/env/agent/index.js +24 -0
- package/dist/env/commands/index.d.ts +1131 -0
- package/dist/env/commands/index.js +14 -0
- package/dist/env/debug/formatters/index.d.ts +236 -0
- package/dist/env/debug/formatters/index.js +11 -0
- package/dist/env/debug/index.d.ts +1652 -0
- package/dist/env/debug/index.js +26 -0
- package/dist/env/hook/index.d.ts +279 -0
- package/dist/env/hook/index.js +29 -0
- package/dist/env/index.d.ts +3481 -0
- package/dist/env/index.js +82 -0
- package/dist/env/llm/index.d.ts +1760 -0
- package/dist/env/llm/index.js +40 -0
- package/dist/env/log-trace/index.d.ts +1574 -0
- package/dist/env/log-trace/index.js +83 -0
- package/dist/env/mcp/index.d.ts +1331 -0
- package/dist/env/mcp/index.js +39 -0
- package/dist/env/mcp/tool/index.d.ts +183 -0
- package/dist/env/mcp/tool/index.js +14 -0
- package/dist/env/memory/built-in/index.d.ts +232 -0
- package/dist/env/memory/built-in/index.js +11 -0
- package/dist/env/memory/index.d.ts +1799 -0
- package/dist/env/memory/index.js +56 -0
- package/dist/env/memory/plugin/index.d.ts +747 -0
- package/dist/env/memory/plugin/index.js +36 -0
- package/dist/env/prompt/index.d.ts +1164 -0
- package/dist/env/prompt/index.js +20 -0
- package/dist/env/session/index.d.ts +1908 -0
- package/dist/env/session/index.js +25 -0
- package/dist/env/session/storage/index.d.ts +564 -0
- package/dist/env/session/storage/index.js +18 -0
- package/dist/env/skill/index.d.ts +1266 -0
- package/dist/env/skill/index.js +34 -0
- package/dist/env/skill/tool/index.d.ts +193 -0
- package/dist/env/skill/tool/index.js +9 -0
- package/dist/env/task/delegate/index.d.ts +1612 -0
- package/dist/env/task/delegate/index.js +18 -0
- package/dist/env/task/events/index.d.ts +171 -0
- package/dist/env/task/events/index.js +7 -0
- package/dist/env/task/hooks/index.d.ts +624 -0
- package/dist/env/task/hooks/index.js +7 -0
- package/dist/env/task/index.d.ts +1553 -0
- package/dist/env/task/index.js +34 -0
- package/dist/env/task/plugins/index.d.ts +466 -0
- package/dist/env/task/plugins/index.js +23 -0
- package/dist/env/task/storage/index.d.ts +241 -0
- package/dist/env/task/storage/index.js +14 -0
- package/dist/env/task/tools/index.d.ts +1485 -0
- package/dist/env/task/tools/index.js +17 -0
- package/dist/env/task/tools/operation/index.d.ts +1484 -0
- package/dist/env/task/tools/operation/index.js +15 -0
- package/dist/env/tool/built-in/index.d.ts +218 -0
- package/dist/env/tool/built-in/index.js +25 -0
- package/dist/env/tool/index.d.ts +1396 -0
- package/dist/env/tool/index.js +39 -0
- package/dist/env/workflow/decorators/index.d.ts +2161 -0
- package/dist/env/workflow/decorators/index.js +27 -0
- package/dist/env/workflow/engine/index.d.ts +3453 -0
- package/dist/env/workflow/engine/index.js +28 -0
- package/dist/env/workflow/index.d.ts +3546 -0
- package/dist/env/workflow/index.js +136 -0
- package/dist/env/workflow/nodes/index.d.ts +2092 -0
- package/dist/env/workflow/nodes/index.js +19 -0
- package/dist/env/workflow/service/index.d.ts +227 -0
- package/dist/env/workflow/service/index.js +13 -0
- package/dist/env/workflow/storage/index.d.ts +165 -0
- package/dist/env/workflow/storage/index.js +27 -0
- package/dist/env/workflow/tools/index.d.ts +416 -0
- package/dist/env/workflow/tools/index.js +159 -0
- package/dist/env/workflow/types/index.d.ts +2255 -0
- package/dist/env/workflow/types/index.js +98 -0
- package/dist/env/workflow/utils/index.d.ts +2031 -0
- package/dist/env/workflow/utils/index.js +637 -0
- package/dist/index.d.ts +7858 -0
- package/dist/index.js +399 -0
- package/dist/shared/@ai-setting/roy-agent-core-0rtxwr28.js +258 -0
- package/dist/shared/@ai-setting/roy-agent-core-0vbdz0x7.js +36 -0
- package/dist/shared/@ai-setting/roy-agent-core-1akcqxj9.js +349 -0
- package/dist/shared/@ai-setting/roy-agent-core-1ce3fqrk.js +117 -0
- package/dist/shared/@ai-setting/roy-agent-core-2dhd60aw.js +11 -0
- package/dist/shared/@ai-setting/roy-agent-core-3jywqmdd.js +393 -0
- package/dist/shared/@ai-setting/roy-agent-core-3rr5k71j.js +200 -0
- package/dist/shared/@ai-setting/roy-agent-core-44hnfb02.js +299 -0
- package/dist/shared/@ai-setting/roy-agent-core-4t40mkpv.js +206 -0
- package/dist/shared/@ai-setting/roy-agent-core-4txzpsbt.js +393 -0
- package/dist/shared/@ai-setting/roy-agent-core-5x94xmt6.js +350 -0
- package/dist/shared/@ai-setting/roy-agent-core-69jskqjg.js +180 -0
- package/dist/shared/@ai-setting/roy-agent-core-6kvtahqv.js +408 -0
- package/dist/shared/@ai-setting/roy-agent-core-7fgf85wc.js +284 -0
- package/dist/shared/@ai-setting/roy-agent-core-81w1963m.js +762 -0
- package/dist/shared/@ai-setting/roy-agent-core-8gxth0eh.js +10 -0
- package/dist/shared/@ai-setting/roy-agent-core-92z6t4he.js +14 -0
- package/dist/shared/@ai-setting/roy-agent-core-93zfb3r1.js +922 -0
- package/dist/shared/@ai-setting/roy-agent-core-9yxb3ty9.js +15 -0
- package/dist/shared/@ai-setting/roy-agent-core-b0x5dda6.js +1130 -0
- package/dist/shared/@ai-setting/roy-agent-core-bcbqy27c.js +14 -0
- package/dist/shared/@ai-setting/roy-agent-core-bvr1761x.js +653 -0
- package/dist/shared/@ai-setting/roy-agent-core-ctdhjv68.js +93 -0
- package/dist/shared/@ai-setting/roy-agent-core-d7cyjkf7.js +872 -0
- package/dist/shared/@ai-setting/roy-agent-core-dh9d7a3m.js +11 -0
- package/dist/shared/@ai-setting/roy-agent-core-e25xkv53.js +64 -0
- package/dist/shared/@ai-setting/roy-agent-core-eajcvp4e.js +378 -0
- package/dist/shared/@ai-setting/roy-agent-core-f7q2x5z6.js +492 -0
- package/dist/shared/@ai-setting/roy-agent-core-fs0mn2jk.js +52 -0
- package/dist/shared/@ai-setting/roy-agent-core-g1s2h0e5.js +171 -0
- package/dist/shared/@ai-setting/roy-agent-core-g99pxzn5.js +862 -0
- package/dist/shared/@ai-setting/roy-agent-core-gbqcyegm.js +1387 -0
- package/dist/shared/@ai-setting/roy-agent-core-gjq1yk68.js +208 -0
- package/dist/shared/@ai-setting/roy-agent-core-gq20wsgv.js +139 -0
- package/dist/shared/@ai-setting/roy-agent-core-gwc4h96n.js +534 -0
- package/dist/shared/@ai-setting/roy-agent-core-jfh9q2qh.js +204 -0
- package/dist/shared/@ai-setting/roy-agent-core-jvatggbb.js +603 -0
- package/dist/shared/@ai-setting/roy-agent-core-kkbwepqb.js +97 -0
- package/dist/shared/@ai-setting/roy-agent-core-pjr12nnd.js +587 -0
- package/dist/shared/@ai-setting/roy-agent-core-psv4v63c.js +176 -0
- package/dist/shared/@ai-setting/roy-agent-core-psvxt4c9.js +60 -0
- package/dist/shared/@ai-setting/roy-agent-core-qqceba6k.js +442 -0
- package/dist/shared/@ai-setting/roy-agent-core-qxhq8ven.js +57 -0
- package/dist/shared/@ai-setting/roy-agent-core-qxnbvgwe.js +66 -0
- package/dist/shared/@ai-setting/roy-agent-core-r9ezzemr.js +10 -0
- package/dist/shared/@ai-setting/roy-agent-core-rhmtwnw1.js +267 -0
- package/dist/shared/@ai-setting/roy-agent-core-rvv6ydff.js +584 -0
- package/dist/shared/@ai-setting/roy-agent-core-rvxg1wps.js +102 -0
- package/dist/shared/@ai-setting/roy-agent-core-satmq6sh.js +549 -0
- package/dist/shared/@ai-setting/roy-agent-core-sx7wsvnn.js +15 -0
- package/dist/shared/@ai-setting/roy-agent-core-t94ktchq.js +213 -0
- package/dist/shared/@ai-setting/roy-agent-core-vf215qfv.js +812 -0
- package/dist/shared/@ai-setting/roy-agent-core-vkz81f7v.js +1316 -0
- package/dist/shared/@ai-setting/roy-agent-core-vn2bc59q.js +1205 -0
- package/dist/shared/@ai-setting/roy-agent-core-wa1kzqky.js +328 -0
- package/dist/shared/@ai-setting/roy-agent-core-wft9ra24.js +20 -0
- package/dist/shared/@ai-setting/roy-agent-core-wrcy0h6z.js +2098 -0
- package/dist/shared/@ai-setting/roy-agent-core-xq8hhqb8.js +419 -0
- package/dist/shared/@ai-setting/roy-agent-core-xs5rsgat.js +368 -0
- package/dist/shared/@ai-setting/roy-agent-core-zbkpc41z.js +377 -0
- package/dist/shared/@ai-setting/roy-agent-core-zgypchmt.js +172 -0
- package/dist/shared/@ai-setting/roy-agent-core-zpn0bqa8.js +103 -0
- package/package.json +29 -8
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
import {
|
|
2
|
+
TracedAs,
|
|
3
|
+
init_decorator
|
|
4
|
+
} from "./roy-agent-core-zgypchmt.js";
|
|
5
|
+
import {
|
|
6
|
+
__legacyDecorateClassTS
|
|
7
|
+
} from "./roy-agent-core-fs0mn2jk.js";
|
|
8
|
+
|
|
9
|
+
// src/env/session/session-message-converter.ts
|
|
10
|
+
init_decorator();
|
|
11
|
+
import { randomUUID } from "crypto";
|
|
12
|
+
var DEFAULT_REASONING_BUDGET_TOKENS = 1e4;
|
|
13
|
+
|
|
14
|
+
class SessionMessageConverter {
|
|
15
|
+
toModelMessage(msg) {
|
|
16
|
+
if (msg.role === "assistant") {
|
|
17
|
+
const content = [];
|
|
18
|
+
for (const part of msg.parts || []) {
|
|
19
|
+
if (part.type === "text") {
|
|
20
|
+
const textPart = part;
|
|
21
|
+
content.push({
|
|
22
|
+
type: "text",
|
|
23
|
+
text: textPart.content,
|
|
24
|
+
...textPart.synthetic !== undefined && { synthetic: textPart.synthetic }
|
|
25
|
+
});
|
|
26
|
+
} else if (part.type === "reasoning") {
|
|
27
|
+
const reasoningPart = part;
|
|
28
|
+
content.push({
|
|
29
|
+
type: "reasoning",
|
|
30
|
+
text: reasoningPart.content,
|
|
31
|
+
reasoningType: reasoningPart.reasoningType
|
|
32
|
+
});
|
|
33
|
+
} else if (part.type === "tool-call") {
|
|
34
|
+
const toolPart = part;
|
|
35
|
+
let parsedArgs = {};
|
|
36
|
+
if (typeof toolPart.arguments === "string") {
|
|
37
|
+
try {
|
|
38
|
+
parsedArgs = JSON.parse(toolPart.arguments);
|
|
39
|
+
} catch {
|
|
40
|
+
parsedArgs = { _raw: toolPart.arguments };
|
|
41
|
+
}
|
|
42
|
+
} else {
|
|
43
|
+
parsedArgs = toolPart.arguments;
|
|
44
|
+
}
|
|
45
|
+
content.push({
|
|
46
|
+
type: "tool-call",
|
|
47
|
+
toolCallId: toolPart.toolCallId,
|
|
48
|
+
toolName: toolPart.toolName,
|
|
49
|
+
input: parsedArgs
|
|
50
|
+
});
|
|
51
|
+
} else if (part.type === "file") {
|
|
52
|
+
const filePart = part;
|
|
53
|
+
content.push({
|
|
54
|
+
type: "file",
|
|
55
|
+
url: filePart.url,
|
|
56
|
+
mimeType: filePart.mime,
|
|
57
|
+
filename: filePart.filename
|
|
58
|
+
});
|
|
59
|
+
} else if (part.type === "tool-result" || part.type === "checkpoint") {} else {
|
|
60
|
+
console.debug(`[session-message-converter] Skipping unsupported part type in assistant: ${part.type}`);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
if (content.length === 0 && msg.content) {
|
|
64
|
+
return { role: "assistant", content: msg.content };
|
|
65
|
+
}
|
|
66
|
+
return { role: "assistant", content };
|
|
67
|
+
}
|
|
68
|
+
if (msg.role === "tool") {
|
|
69
|
+
const toolPart = msg.parts?.find((p) => p.type === "tool-result");
|
|
70
|
+
return {
|
|
71
|
+
role: "tool",
|
|
72
|
+
content: [{
|
|
73
|
+
type: "tool-result",
|
|
74
|
+
toolCallId: toolPart?.toolCallId || "",
|
|
75
|
+
toolName: toolPart?.toolName || "",
|
|
76
|
+
output: toolPart?.output || msg.content || ""
|
|
77
|
+
}]
|
|
78
|
+
};
|
|
79
|
+
}
|
|
80
|
+
return {
|
|
81
|
+
role: msg.role,
|
|
82
|
+
content: msg.content || ""
|
|
83
|
+
};
|
|
84
|
+
}
|
|
85
|
+
fromModelMessage(aiMsg, options) {
|
|
86
|
+
const parts = [];
|
|
87
|
+
const content = typeof aiMsg.content === "string" || Array.isArray(aiMsg.content) ? aiMsg.content : "";
|
|
88
|
+
let hasToolCallPart = false;
|
|
89
|
+
let hasToolResultPart = false;
|
|
90
|
+
if (typeof content === "string") {
|
|
91
|
+
parts.push({ type: "text", content });
|
|
92
|
+
} else if (Array.isArray(content)) {
|
|
93
|
+
for (const part of content) {
|
|
94
|
+
const p = part;
|
|
95
|
+
if (p.type === "text") {
|
|
96
|
+
parts.push({ type: "text", content: p.text || "" });
|
|
97
|
+
} else if (p.type === "reasoning") {
|
|
98
|
+
parts.push({
|
|
99
|
+
type: "reasoning",
|
|
100
|
+
content: p.text || "",
|
|
101
|
+
reasoningType: p.reasoningType,
|
|
102
|
+
state: "completed"
|
|
103
|
+
});
|
|
104
|
+
} else if (p.type === "tool-call") {
|
|
105
|
+
hasToolCallPart = true;
|
|
106
|
+
parts.push({
|
|
107
|
+
type: "tool-call",
|
|
108
|
+
toolCallId: p.toolCallId,
|
|
109
|
+
toolName: p.toolName,
|
|
110
|
+
arguments: p.input,
|
|
111
|
+
state: "pending"
|
|
112
|
+
});
|
|
113
|
+
} else if (p.type === "tool-result") {
|
|
114
|
+
hasToolResultPart = true;
|
|
115
|
+
parts.push({
|
|
116
|
+
type: "tool-result",
|
|
117
|
+
toolCallId: p.toolCallId,
|
|
118
|
+
toolName: p.toolName,
|
|
119
|
+
output: typeof p.output === "string" ? p.output : JSON.stringify(p.output),
|
|
120
|
+
state: "completed"
|
|
121
|
+
});
|
|
122
|
+
} else if (p.type === "file") {
|
|
123
|
+
parts.push({
|
|
124
|
+
type: "file",
|
|
125
|
+
mime: p.mimeType || "application/octet-stream",
|
|
126
|
+
url: p.url,
|
|
127
|
+
filename: p.filename
|
|
128
|
+
});
|
|
129
|
+
} else {
|
|
130
|
+
console.debug(`[session-message-converter] Unknown part type: ${p.type}`);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
let metadataType;
|
|
135
|
+
if (aiMsg.role === "assistant" && hasToolCallPart) {
|
|
136
|
+
metadataType = "tool_call";
|
|
137
|
+
} else if (aiMsg.role === "tool") {
|
|
138
|
+
metadataType = "tool_result";
|
|
139
|
+
}
|
|
140
|
+
const result = {
|
|
141
|
+
id: options?.messageID || `msg_${randomUUID()}`,
|
|
142
|
+
sessionID: options?.sessionID || "",
|
|
143
|
+
role: aiMsg.role,
|
|
144
|
+
timestamp: Date.now(),
|
|
145
|
+
parts,
|
|
146
|
+
content: typeof content === "string" ? content : ""
|
|
147
|
+
};
|
|
148
|
+
if (metadataType) {
|
|
149
|
+
result.metadata = { type: metadataType };
|
|
150
|
+
}
|
|
151
|
+
return result;
|
|
152
|
+
}
|
|
153
|
+
sessionToHistory(messages) {
|
|
154
|
+
return messages.filter((msg) => !msg.metadata?.isArchived && !msg.isArchived).map((msg) => this.toModelMessage(msg));
|
|
155
|
+
}
|
|
156
|
+
extractProviderOptions(msg) {
|
|
157
|
+
const options = {};
|
|
158
|
+
const reasoningParts = msg.parts?.filter((p) => p.type === "reasoning");
|
|
159
|
+
if (reasoningParts && reasoningParts.length > 0) {
|
|
160
|
+
const firstReasoning = reasoningParts[0];
|
|
161
|
+
if (firstReasoning.reasoningType) {
|
|
162
|
+
options.openai = {
|
|
163
|
+
thinking: {
|
|
164
|
+
type: firstReasoning.reasoningType === "effort" ? "extended" : "core"
|
|
165
|
+
}
|
|
166
|
+
};
|
|
167
|
+
if (firstReasoning.reasoningType === "effort") {
|
|
168
|
+
const budgetTokens = firstReasoning.metadata?.tokenCount || DEFAULT_REASONING_BUDGET_TOKENS;
|
|
169
|
+
options.anthropic = {
|
|
170
|
+
thinking: {
|
|
171
|
+
type: "enabled",
|
|
172
|
+
budgetTokens
|
|
173
|
+
}
|
|
174
|
+
};
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
return options;
|
|
179
|
+
}
|
|
180
|
+
migrateMessage(oldMsg) {
|
|
181
|
+
if (oldMsg.parts && oldMsg.parts.length > 0) {
|
|
182
|
+
const firstPart = oldMsg.parts[0];
|
|
183
|
+
if (firstPart && typeof firstPart.type === "string" && firstPart.type.length > 0) {
|
|
184
|
+
return {
|
|
185
|
+
...oldMsg,
|
|
186
|
+
content: oldMsg.content || ""
|
|
187
|
+
};
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
return {
|
|
191
|
+
...oldMsg,
|
|
192
|
+
content: oldMsg.content || "",
|
|
193
|
+
parts: oldMsg.content ? [{ type: "text", content: oldMsg.content }] : []
|
|
194
|
+
};
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
__legacyDecorateClassTS([
|
|
198
|
+
TracedAs("session-message-converter.toModelMessage", { recordParams: true, recordResult: true, log: true })
|
|
199
|
+
], SessionMessageConverter.prototype, "toModelMessage", null);
|
|
200
|
+
__legacyDecorateClassTS([
|
|
201
|
+
TracedAs("session-message-converter.fromModelMessage", { recordParams: true, recordResult: true, log: true })
|
|
202
|
+
], SessionMessageConverter.prototype, "fromModelMessage", null);
|
|
203
|
+
|
|
204
|
+
export { SessionMessageConverter };
|