@kinqs/brainrouter-mcp-server 0.3.5 → 0.3.6
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/.env.example +121 -71
- package/dist/__tests__/cognitive-extractor.test.js +112 -0
- package/dist/__tests__/crypto.test.js +8 -1
- package/dist/__tests__/working-memory.test.js +67 -0
- package/dist/index.js +0 -0
- package/dist/memory/engine.js +21 -1
- package/dist/memory/pipeline/cognitive-extractor.js +19 -1
- package/dist/memory/recall.d.ts +3 -1
- package/dist/memory/recall.js +48 -3
- package/dist/memory/store/relevance-judge.d.ts +51 -0
- package/dist/memory/store/relevance-judge.js +196 -0
- package/dist/memory/working/canvas.js +11 -0
- package/package.json +2 -2
- package/dist/memory/config.d.ts +0 -2
- package/dist/memory/config.js +0 -3
- package/dist/memory/pipeline/l1-contradiction.d.ts +0 -7
- package/dist/memory/pipeline/l1-contradiction.js +0 -66
- package/dist/memory/pipeline/l1-dedup.d.ts +0 -23
- package/dist/memory/pipeline/l1-dedup.js +0 -39
- package/dist/memory/pipeline/l1-extractor.d.ts +0 -21
- package/dist/memory/pipeline/l1-extractor.js +0 -180
- package/dist/memory/pipeline/l2-direction-shift.d.ts +0 -10
- package/dist/memory/pipeline/l2-direction-shift.js +0 -27
- package/dist/memory/pipeline/l2-scene.d.ts +0 -15
- package/dist/memory/pipeline/l2-scene.js +0 -140
- package/dist/memory/pipeline/l3-distiller.d.ts +0 -15
- package/dist/memory/pipeline/l3-distiller.js +0 -40
- package/dist/memory/pipeline/task-queue.d.ts +0 -54
- package/dist/memory/pipeline/task-queue.js +0 -117
- package/dist/memory/prompts/graph-extraction-batch.d.ts +0 -14
- package/dist/memory/prompts/graph-extraction-batch.js +0 -54
- package/dist/memory/prompts/l1-contradiction-batch.d.ts +0 -16
- package/dist/memory/prompts/l1-contradiction-batch.js +0 -47
- package/dist/memory/prompts/l1-contradiction.d.ts +0 -1
- package/dist/memory/prompts/l1-contradiction.js +0 -25
- package/dist/memory/prompts/l1-extraction.d.ts +0 -10
- package/dist/memory/prompts/l1-extraction.js +0 -114
- package/dist/memory/prompts/l2-direction-shift.d.ts +0 -5
- package/dist/memory/prompts/l2-direction-shift.js +0 -32
- package/dist/memory/prompts/l2-scene-cluster.d.ts +0 -2
- package/dist/memory/prompts/l2-scene-cluster.js +0 -33
- package/dist/memory/prompts/l2-scene.d.ts +0 -7
- package/dist/memory/prompts/l2-scene.js +0 -40
- package/dist/memory/prompts/l3-persona.d.ts +0 -6
- package/dist/memory/prompts/l3-persona.js +0 -60
- package/dist/memory/store/types.d.ts +0 -101
- package/dist/memory/store/types.js +0 -1
- package/dist/memory/types.d.ts +0 -207
- package/dist/memory/types.js +0 -7
- package/dist/memory/validation.d.ts +0 -441
- package/dist/memory/validation.js +0 -129
- package/dist/tools/agent_memory_tools.d.ts +0 -485
- package/dist/tools/agent_memory_tools.js +0 -793
- package/dist/tools/get_doc.d.ts +0 -21
- package/dist/tools/get_doc.js +0 -24
- package/dist/tools/list_docs.d.ts +0 -15
- package/dist/tools/list_docs.js +0 -16
- package/dist/tools/update_doc.d.ts +0 -24
- package/dist/tools/update_doc.js +0 -35
- /package/dist/__tests__/{agent_mode.test.d.ts → cognitive-extractor.test.d.ts} +0 -0
|
@@ -1,485 +0,0 @@
|
|
|
1
|
-
export declare const memoryGetExtractionWorkSchema: {
|
|
2
|
-
readonly name: "memory_get_extraction_work";
|
|
3
|
-
readonly description: "Get pending conversational L0 messages that need to be distilled into L1 memories.";
|
|
4
|
-
readonly inputSchema: {
|
|
5
|
-
readonly type: "object";
|
|
6
|
-
readonly properties: {
|
|
7
|
-
readonly userId: {
|
|
8
|
-
readonly type: "string";
|
|
9
|
-
readonly description: "The ID of the user.";
|
|
10
|
-
};
|
|
11
|
-
readonly sessionKey: {
|
|
12
|
-
readonly type: "string";
|
|
13
|
-
readonly description: "The session key.";
|
|
14
|
-
};
|
|
15
|
-
readonly limit: {
|
|
16
|
-
readonly type: "number";
|
|
17
|
-
readonly description: "Maximum number of L0 messages to retrieve.";
|
|
18
|
-
readonly default: 10;
|
|
19
|
-
};
|
|
20
|
-
readonly activeSkill: {
|
|
21
|
-
readonly type: "string";
|
|
22
|
-
readonly description: "The currently active skill.";
|
|
23
|
-
};
|
|
24
|
-
};
|
|
25
|
-
readonly required: readonly ["userId", "sessionKey"];
|
|
26
|
-
};
|
|
27
|
-
};
|
|
28
|
-
export declare const memoryCommitExtractedL1Schema: {
|
|
29
|
-
readonly name: "memory_commit_extracted_l1";
|
|
30
|
-
readonly description: "Commit newly extracted L1 memories for a session, automatically generating vector embeddings and running deduplication.";
|
|
31
|
-
readonly inputSchema: {
|
|
32
|
-
readonly type: "object";
|
|
33
|
-
readonly properties: {
|
|
34
|
-
readonly userId: {
|
|
35
|
-
readonly type: "string";
|
|
36
|
-
};
|
|
37
|
-
readonly sessionKey: {
|
|
38
|
-
readonly type: "string";
|
|
39
|
-
};
|
|
40
|
-
readonly sessionId: {
|
|
41
|
-
readonly type: "string";
|
|
42
|
-
readonly default: "";
|
|
43
|
-
};
|
|
44
|
-
readonly sourceL0Ids: {
|
|
45
|
-
readonly type: "array";
|
|
46
|
-
readonly items: {
|
|
47
|
-
readonly type: "string";
|
|
48
|
-
};
|
|
49
|
-
};
|
|
50
|
-
readonly scenes: {
|
|
51
|
-
readonly type: "array";
|
|
52
|
-
readonly items: {
|
|
53
|
-
readonly type: "object";
|
|
54
|
-
readonly properties: {
|
|
55
|
-
readonly sceneName: {
|
|
56
|
-
readonly type: "string";
|
|
57
|
-
};
|
|
58
|
-
readonly memories: {
|
|
59
|
-
readonly type: "array";
|
|
60
|
-
readonly items: {
|
|
61
|
-
readonly type: "object";
|
|
62
|
-
readonly properties: {
|
|
63
|
-
readonly content: {
|
|
64
|
-
readonly type: "string";
|
|
65
|
-
};
|
|
66
|
-
readonly type: {
|
|
67
|
-
readonly type: "string";
|
|
68
|
-
readonly enum: readonly ["persona", "episodic", "instruction", "skill_context"];
|
|
69
|
-
};
|
|
70
|
-
readonly priority: {
|
|
71
|
-
readonly type: "number";
|
|
72
|
-
readonly minimum: 0;
|
|
73
|
-
readonly maximum: 100;
|
|
74
|
-
readonly default: 50;
|
|
75
|
-
};
|
|
76
|
-
readonly skillTag: {
|
|
77
|
-
readonly type: "string";
|
|
78
|
-
readonly default: "";
|
|
79
|
-
};
|
|
80
|
-
readonly metadata: {
|
|
81
|
-
readonly type: "object";
|
|
82
|
-
readonly default: {};
|
|
83
|
-
};
|
|
84
|
-
};
|
|
85
|
-
readonly required: readonly ["content", "type"];
|
|
86
|
-
};
|
|
87
|
-
};
|
|
88
|
-
};
|
|
89
|
-
readonly required: readonly ["sceneName", "memories"];
|
|
90
|
-
};
|
|
91
|
-
};
|
|
92
|
-
};
|
|
93
|
-
readonly required: readonly ["userId", "sessionKey", "scenes"];
|
|
94
|
-
};
|
|
95
|
-
};
|
|
96
|
-
export declare const memoryGetContradictionWorkSchema: {
|
|
97
|
-
readonly name: "memory_get_contradiction_work";
|
|
98
|
-
readonly description: "Get pending L1 memories that need to be evaluated for semantic contradictions or temporal updates against existing memories.";
|
|
99
|
-
readonly inputSchema: {
|
|
100
|
-
readonly type: "object";
|
|
101
|
-
readonly properties: {
|
|
102
|
-
readonly userId: {
|
|
103
|
-
readonly type: "string";
|
|
104
|
-
};
|
|
105
|
-
readonly limit: {
|
|
106
|
-
readonly type: "number";
|
|
107
|
-
readonly default: 20;
|
|
108
|
-
};
|
|
109
|
-
};
|
|
110
|
-
readonly required: readonly ["userId"];
|
|
111
|
-
};
|
|
112
|
-
};
|
|
113
|
-
export declare const memoryCommitContradictionDecisionsSchema: {
|
|
114
|
-
readonly name: "memory_commit_contradiction_decisions";
|
|
115
|
-
readonly description: "Commit decisions on contradiction candidates, invalidating/superseding old records or logging genuine conflicts.";
|
|
116
|
-
readonly inputSchema: {
|
|
117
|
-
readonly type: "object";
|
|
118
|
-
readonly properties: {
|
|
119
|
-
readonly userId: {
|
|
120
|
-
readonly type: "string";
|
|
121
|
-
};
|
|
122
|
-
readonly decisions: {
|
|
123
|
-
readonly type: "array";
|
|
124
|
-
readonly items: {
|
|
125
|
-
readonly type: "object";
|
|
126
|
-
readonly properties: {
|
|
127
|
-
readonly newRecordId: {
|
|
128
|
-
readonly type: "string";
|
|
129
|
-
};
|
|
130
|
-
readonly existingRecordId: {
|
|
131
|
-
readonly type: "string";
|
|
132
|
-
};
|
|
133
|
-
readonly decision: {
|
|
134
|
-
readonly type: "string";
|
|
135
|
-
readonly enum: readonly ["no_conflict", "temporal_update", "genuine_conflict"];
|
|
136
|
-
};
|
|
137
|
-
readonly reason: {
|
|
138
|
-
readonly type: "string";
|
|
139
|
-
};
|
|
140
|
-
readonly confidence: {
|
|
141
|
-
readonly type: "number";
|
|
142
|
-
readonly minimum: 0;
|
|
143
|
-
readonly maximum: 1;
|
|
144
|
-
readonly default: 1;
|
|
145
|
-
};
|
|
146
|
-
};
|
|
147
|
-
readonly required: readonly ["newRecordId", "existingRecordId", "decision"];
|
|
148
|
-
};
|
|
149
|
-
};
|
|
150
|
-
};
|
|
151
|
-
readonly required: readonly ["userId", "decisions"];
|
|
152
|
-
};
|
|
153
|
-
};
|
|
154
|
-
export declare const memoryGetGraphWorkSchema: {
|
|
155
|
-
readonly name: "memory_get_graph_work";
|
|
156
|
-
readonly description: "Get pending L1 memories that have not yet had GraphRAG entities and relationships extracted from them.";
|
|
157
|
-
readonly inputSchema: {
|
|
158
|
-
readonly type: "object";
|
|
159
|
-
readonly properties: {
|
|
160
|
-
readonly userId: {
|
|
161
|
-
readonly type: "string";
|
|
162
|
-
};
|
|
163
|
-
readonly limit: {
|
|
164
|
-
readonly type: "number";
|
|
165
|
-
readonly default: 20;
|
|
166
|
-
};
|
|
167
|
-
};
|
|
168
|
-
readonly required: readonly ["userId"];
|
|
169
|
-
};
|
|
170
|
-
};
|
|
171
|
-
export declare const memoryCommitGraphSchema: {
|
|
172
|
-
readonly name: "memory_commit_graph";
|
|
173
|
-
readonly description: "Commit entities and relations extracted from an L1 memory, updating the GraphRAG knowledge graph.";
|
|
174
|
-
readonly inputSchema: {
|
|
175
|
-
readonly type: "object";
|
|
176
|
-
readonly properties: {
|
|
177
|
-
readonly userId: {
|
|
178
|
-
readonly type: "string";
|
|
179
|
-
};
|
|
180
|
-
readonly sourceRecordId: {
|
|
181
|
-
readonly type: "string";
|
|
182
|
-
};
|
|
183
|
-
readonly entities: {
|
|
184
|
-
readonly type: "array";
|
|
185
|
-
readonly items: {
|
|
186
|
-
readonly type: "object";
|
|
187
|
-
readonly properties: {
|
|
188
|
-
readonly entity: {
|
|
189
|
-
readonly type: "string";
|
|
190
|
-
};
|
|
191
|
-
readonly type: {
|
|
192
|
-
readonly type: "string";
|
|
193
|
-
readonly default: "concept";
|
|
194
|
-
};
|
|
195
|
-
readonly confidence: {
|
|
196
|
-
readonly type: "number";
|
|
197
|
-
readonly minimum: 0;
|
|
198
|
-
readonly maximum: 1;
|
|
199
|
-
readonly default: 1;
|
|
200
|
-
};
|
|
201
|
-
readonly skillTag: {
|
|
202
|
-
readonly type: "string";
|
|
203
|
-
readonly default: "";
|
|
204
|
-
};
|
|
205
|
-
readonly sourceRecordId: {
|
|
206
|
-
readonly type: "string";
|
|
207
|
-
};
|
|
208
|
-
};
|
|
209
|
-
readonly required: readonly ["entity"];
|
|
210
|
-
};
|
|
211
|
-
};
|
|
212
|
-
readonly relations: {
|
|
213
|
-
readonly type: "array";
|
|
214
|
-
readonly items: {
|
|
215
|
-
readonly type: "object";
|
|
216
|
-
readonly properties: {
|
|
217
|
-
readonly from: {
|
|
218
|
-
readonly type: "string";
|
|
219
|
-
};
|
|
220
|
-
readonly to: {
|
|
221
|
-
readonly type: "string";
|
|
222
|
-
};
|
|
223
|
-
readonly relation: {
|
|
224
|
-
readonly type: "string";
|
|
225
|
-
readonly default: "relates_to";
|
|
226
|
-
};
|
|
227
|
-
readonly confidence: {
|
|
228
|
-
readonly type: "number";
|
|
229
|
-
readonly minimum: 0;
|
|
230
|
-
readonly maximum: 1;
|
|
231
|
-
readonly default: 1;
|
|
232
|
-
};
|
|
233
|
-
readonly skillTag: {
|
|
234
|
-
readonly type: "string";
|
|
235
|
-
readonly default: "";
|
|
236
|
-
};
|
|
237
|
-
readonly sourceRecordId: {
|
|
238
|
-
readonly type: "string";
|
|
239
|
-
};
|
|
240
|
-
};
|
|
241
|
-
readonly required: readonly ["from", "to"];
|
|
242
|
-
};
|
|
243
|
-
};
|
|
244
|
-
};
|
|
245
|
-
readonly required: readonly ["userId"];
|
|
246
|
-
};
|
|
247
|
-
};
|
|
248
|
-
export declare const memoryGetL2WorkSchema: {
|
|
249
|
-
readonly name: "memory_get_l2_work";
|
|
250
|
-
readonly description: "Get L1 memories grouped by scenes to perform scene narrative summary distillation or cold scene merges.";
|
|
251
|
-
readonly inputSchema: {
|
|
252
|
-
readonly type: "object";
|
|
253
|
-
readonly properties: {
|
|
254
|
-
readonly userId: {
|
|
255
|
-
readonly type: "string";
|
|
256
|
-
};
|
|
257
|
-
};
|
|
258
|
-
readonly required: readonly ["userId"];
|
|
259
|
-
};
|
|
260
|
-
};
|
|
261
|
-
export declare const memoryCommitL2Schema: {
|
|
262
|
-
readonly name: "memory_commit_l2";
|
|
263
|
-
readonly description: "Commit scene summaries, scene name renames (clustering), or cold scene merge distillations.";
|
|
264
|
-
readonly inputSchema: {
|
|
265
|
-
readonly type: "object";
|
|
266
|
-
readonly properties: {
|
|
267
|
-
readonly userId: {
|
|
268
|
-
readonly type: "string";
|
|
269
|
-
};
|
|
270
|
-
readonly renames: {
|
|
271
|
-
readonly type: "array";
|
|
272
|
-
readonly items: {
|
|
273
|
-
readonly type: "object";
|
|
274
|
-
readonly properties: {
|
|
275
|
-
readonly oldName: {
|
|
276
|
-
readonly type: "string";
|
|
277
|
-
};
|
|
278
|
-
readonly newName: {
|
|
279
|
-
readonly type: "string";
|
|
280
|
-
};
|
|
281
|
-
};
|
|
282
|
-
readonly required: readonly ["oldName", "newName"];
|
|
283
|
-
};
|
|
284
|
-
};
|
|
285
|
-
readonly scenes: {
|
|
286
|
-
readonly type: "array";
|
|
287
|
-
readonly items: {
|
|
288
|
-
readonly type: "object";
|
|
289
|
-
readonly properties: {
|
|
290
|
-
readonly sceneName: {
|
|
291
|
-
readonly type: "string";
|
|
292
|
-
};
|
|
293
|
-
readonly summaryMd: {
|
|
294
|
-
readonly type: "string";
|
|
295
|
-
};
|
|
296
|
-
readonly heatScore: {
|
|
297
|
-
readonly type: "number";
|
|
298
|
-
readonly minimum: 0;
|
|
299
|
-
readonly maximum: 100;
|
|
300
|
-
};
|
|
301
|
-
};
|
|
302
|
-
readonly required: readonly ["sceneName", "summaryMd"];
|
|
303
|
-
};
|
|
304
|
-
};
|
|
305
|
-
readonly merges: {
|
|
306
|
-
readonly type: "array";
|
|
307
|
-
readonly items: {
|
|
308
|
-
readonly type: "object";
|
|
309
|
-
readonly properties: {
|
|
310
|
-
readonly sceneIds: {
|
|
311
|
-
readonly type: "array";
|
|
312
|
-
readonly items: {
|
|
313
|
-
readonly type: "string";
|
|
314
|
-
};
|
|
315
|
-
};
|
|
316
|
-
readonly mergedSummaryMd: {
|
|
317
|
-
readonly type: "string";
|
|
318
|
-
};
|
|
319
|
-
};
|
|
320
|
-
readonly required: readonly ["sceneIds", "mergedSummaryMd"];
|
|
321
|
-
};
|
|
322
|
-
};
|
|
323
|
-
};
|
|
324
|
-
readonly required: readonly ["userId"];
|
|
325
|
-
};
|
|
326
|
-
};
|
|
327
|
-
export declare const memoryGetL3WorkSchema: {
|
|
328
|
-
readonly name: "memory_get_l3_work";
|
|
329
|
-
readonly description: "Get L1 persona and instruction memories across all sessions to compile a synthesized L3 Narrative Profile.";
|
|
330
|
-
readonly inputSchema: {
|
|
331
|
-
readonly type: "object";
|
|
332
|
-
readonly properties: {
|
|
333
|
-
readonly userId: {
|
|
334
|
-
readonly type: "string";
|
|
335
|
-
};
|
|
336
|
-
};
|
|
337
|
-
readonly required: readonly ["userId"];
|
|
338
|
-
};
|
|
339
|
-
};
|
|
340
|
-
export declare const memoryCommitL3Schema: {
|
|
341
|
-
readonly name: "memory_commit_l3";
|
|
342
|
-
readonly description: "Commit a synthesized L3 Narrative Profile summary, invalidating persona caches.";
|
|
343
|
-
readonly inputSchema: {
|
|
344
|
-
readonly type: "object";
|
|
345
|
-
readonly properties: {
|
|
346
|
-
readonly userId: {
|
|
347
|
-
readonly type: "string";
|
|
348
|
-
};
|
|
349
|
-
readonly personaMd: {
|
|
350
|
-
readonly type: "string";
|
|
351
|
-
};
|
|
352
|
-
};
|
|
353
|
-
readonly required: readonly ["userId", "personaMd"];
|
|
354
|
-
};
|
|
355
|
-
};
|
|
356
|
-
export declare function handleMemoryGetExtractionWork(args: any): Promise<{
|
|
357
|
-
content: {
|
|
358
|
-
type: string;
|
|
359
|
-
text: string;
|
|
360
|
-
}[];
|
|
361
|
-
isError?: undefined;
|
|
362
|
-
} | {
|
|
363
|
-
isError: boolean;
|
|
364
|
-
content: {
|
|
365
|
-
type: string;
|
|
366
|
-
text: string;
|
|
367
|
-
}[];
|
|
368
|
-
}>;
|
|
369
|
-
export declare function handleMemoryCommitExtractedL1(args: any): Promise<{
|
|
370
|
-
content: {
|
|
371
|
-
type: string;
|
|
372
|
-
text: string;
|
|
373
|
-
}[];
|
|
374
|
-
isError?: undefined;
|
|
375
|
-
} | {
|
|
376
|
-
isError: boolean;
|
|
377
|
-
content: {
|
|
378
|
-
type: string;
|
|
379
|
-
text: string;
|
|
380
|
-
}[];
|
|
381
|
-
}>;
|
|
382
|
-
export declare function handleMemoryGetContradictionWork(args: any): Promise<{
|
|
383
|
-
content: {
|
|
384
|
-
type: string;
|
|
385
|
-
text: string;
|
|
386
|
-
}[];
|
|
387
|
-
isError?: undefined;
|
|
388
|
-
} | {
|
|
389
|
-
isError: boolean;
|
|
390
|
-
content: {
|
|
391
|
-
type: string;
|
|
392
|
-
text: string;
|
|
393
|
-
}[];
|
|
394
|
-
}>;
|
|
395
|
-
export declare function handleMemoryCommitContradictionDecisions(args: any): Promise<{
|
|
396
|
-
content: {
|
|
397
|
-
type: string;
|
|
398
|
-
text: string;
|
|
399
|
-
}[];
|
|
400
|
-
isError?: undefined;
|
|
401
|
-
} | {
|
|
402
|
-
isError: boolean;
|
|
403
|
-
content: {
|
|
404
|
-
type: string;
|
|
405
|
-
text: string;
|
|
406
|
-
}[];
|
|
407
|
-
}>;
|
|
408
|
-
export declare function handleMemoryGetGraphWork(args: any): Promise<{
|
|
409
|
-
content: {
|
|
410
|
-
type: string;
|
|
411
|
-
text: string;
|
|
412
|
-
}[];
|
|
413
|
-
isError?: undefined;
|
|
414
|
-
} | {
|
|
415
|
-
isError: boolean;
|
|
416
|
-
content: {
|
|
417
|
-
type: string;
|
|
418
|
-
text: string;
|
|
419
|
-
}[];
|
|
420
|
-
}>;
|
|
421
|
-
export declare function handleMemoryCommitGraph(args: any): Promise<{
|
|
422
|
-
content: {
|
|
423
|
-
type: string;
|
|
424
|
-
text: string;
|
|
425
|
-
}[];
|
|
426
|
-
isError?: undefined;
|
|
427
|
-
} | {
|
|
428
|
-
isError: boolean;
|
|
429
|
-
content: {
|
|
430
|
-
type: string;
|
|
431
|
-
text: string;
|
|
432
|
-
}[];
|
|
433
|
-
}>;
|
|
434
|
-
export declare function handleMemoryGetL2Work(args: any): Promise<{
|
|
435
|
-
content: {
|
|
436
|
-
type: string;
|
|
437
|
-
text: string;
|
|
438
|
-
}[];
|
|
439
|
-
isError?: undefined;
|
|
440
|
-
} | {
|
|
441
|
-
isError: boolean;
|
|
442
|
-
content: {
|
|
443
|
-
type: string;
|
|
444
|
-
text: string;
|
|
445
|
-
}[];
|
|
446
|
-
}>;
|
|
447
|
-
export declare function handleMemoryCommitL2(args: any): Promise<{
|
|
448
|
-
content: {
|
|
449
|
-
type: string;
|
|
450
|
-
text: string;
|
|
451
|
-
}[];
|
|
452
|
-
isError?: undefined;
|
|
453
|
-
} | {
|
|
454
|
-
isError: boolean;
|
|
455
|
-
content: {
|
|
456
|
-
type: string;
|
|
457
|
-
text: string;
|
|
458
|
-
}[];
|
|
459
|
-
}>;
|
|
460
|
-
export declare function handleMemoryGetL3Work(args: any): Promise<{
|
|
461
|
-
content: {
|
|
462
|
-
type: string;
|
|
463
|
-
text: string;
|
|
464
|
-
}[];
|
|
465
|
-
isError?: undefined;
|
|
466
|
-
} | {
|
|
467
|
-
isError: boolean;
|
|
468
|
-
content: {
|
|
469
|
-
type: string;
|
|
470
|
-
text: string;
|
|
471
|
-
}[];
|
|
472
|
-
}>;
|
|
473
|
-
export declare function handleMemoryCommitL3(args: any): Promise<{
|
|
474
|
-
content: {
|
|
475
|
-
type: string;
|
|
476
|
-
text: string;
|
|
477
|
-
}[];
|
|
478
|
-
isError?: undefined;
|
|
479
|
-
} | {
|
|
480
|
-
isError: boolean;
|
|
481
|
-
content: {
|
|
482
|
-
type: string;
|
|
483
|
-
text: string;
|
|
484
|
-
}[];
|
|
485
|
-
}>;
|