@mastra/core 0.15.3-alpha.1 → 0.15.3-alpha.2
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/agent/index.cjs +8 -8
- package/dist/agent/index.js +1 -1
- package/dist/agent/input-processor/index.cjs +6 -6
- package/dist/agent/input-processor/index.js +1 -1
- package/dist/{chunk-FGCA6CCM.js → chunk-5NGEKEU7.js} +9 -2
- package/dist/chunk-5NGEKEU7.js.map +1 -0
- package/dist/{chunk-6Z7D7CA3.cjs → chunk-7OSUKFNG.cjs} +9 -2
- package/dist/chunk-7OSUKFNG.cjs.map +1 -0
- package/dist/{chunk-HRDADYVX.cjs → chunk-HHLPYCQG.cjs} +4 -4
- package/dist/{chunk-HRDADYVX.cjs.map → chunk-HHLPYCQG.cjs.map} +1 -1
- package/dist/{chunk-XEY3CWQW.cjs → chunk-HXYE4EJA.cjs} +7 -7
- package/dist/{chunk-XEY3CWQW.cjs.map → chunk-HXYE4EJA.cjs.map} +1 -1
- package/dist/{chunk-MKWJKRSX.js → chunk-IYCG5OVT.js} +3 -3
- package/dist/{chunk-MKWJKRSX.js.map → chunk-IYCG5OVT.js.map} +1 -1
- package/dist/{chunk-5MCNXLGT.js → chunk-T64BA34G.js} +3 -3
- package/dist/{chunk-5MCNXLGT.js.map → chunk-T64BA34G.js.map} +1 -1
- package/dist/{chunk-TINMY4WA.js → chunk-UT6KEZRF.js} +3 -3
- package/dist/{chunk-TINMY4WA.js.map → chunk-UT6KEZRF.js.map} +1 -1
- package/dist/{chunk-CDLIHAX2.cjs → chunk-WHEH32QU.cjs} +4 -4
- package/dist/{chunk-CDLIHAX2.cjs.map → chunk-WHEH32QU.cjs.map} +1 -1
- package/dist/index.cjs +17 -17
- package/dist/index.js +4 -4
- package/dist/loop/index.cjs +2 -2
- package/dist/loop/index.js +1 -1
- package/dist/mastra/index.cjs +2 -2
- package/dist/mastra/index.js +1 -1
- package/dist/network/index.cjs +2 -2
- package/dist/network/index.js +1 -1
- package/dist/network/vNext/index.cjs +12 -12
- package/dist/network/vNext/index.js +1 -1
- package/dist/processors/index.cjs +8 -8
- package/dist/processors/index.js +2 -2
- package/dist/relevance/index.cjs +4 -4
- package/dist/relevance/index.js +1 -1
- package/dist/scores/index.cjs +5 -5
- package/dist/scores/index.js +1 -1
- package/dist/stream/aisdk/v5/compat.d.ts +8 -117
- package/dist/stream/aisdk/v5/compat.d.ts.map +1 -1
- package/dist/stream/index.cjs +3 -3
- package/dist/stream/index.js +1 -1
- package/dist/workflows/evented/index.cjs +10 -10
- package/dist/workflows/evented/index.js +1 -1
- package/dist/workflows/index.cjs +10 -10
- package/dist/workflows/index.js +1 -1
- package/dist/workflows/legacy/index.cjs +22 -22
- package/dist/workflows/legacy/index.js +1 -1
- package/package.json +3 -3
- package/dist/chunk-6Z7D7CA3.cjs.map +0 -1
- package/dist/chunk-FGCA6CCM.js.map +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunk7OSUKFNG_cjs = require('../../chunk-7OSUKFNG.cjs');
|
|
4
4
|
var chunkNFXTYMWZ_cjs = require('../../chunk-NFXTYMWZ.cjs');
|
|
5
5
|
var chunkQA2TWVUS_cjs = require('../../chunk-QA2TWVUS.cjs');
|
|
6
6
|
var chunkGPWMM745_cjs = require('../../chunk-GPWMM745.cjs');
|
|
@@ -210,7 +210,7 @@ var NewAgentNetwork = class extends chunkKXCUCBEI_cjs.MastraBase {
|
|
|
210
210
|
|
|
211
211
|
Keep in mind that the user only sees the final result of the task. When reviewing completion, you should know that the user will not see the intermediate results.
|
|
212
212
|
`;
|
|
213
|
-
return new
|
|
213
|
+
return new chunk7OSUKFNG_cjs.Agent({
|
|
214
214
|
name: "routing-agent",
|
|
215
215
|
instructions,
|
|
216
216
|
model: this.#model,
|
|
@@ -226,7 +226,7 @@ var NewAgentNetwork = class extends chunkKXCUCBEI_cjs.MastraBase {
|
|
|
226
226
|
resourceId
|
|
227
227
|
}) {
|
|
228
228
|
const networkWorkflow = this.createWorkflow({ runtimeContext });
|
|
229
|
-
const finalStep =
|
|
229
|
+
const finalStep = chunk7OSUKFNG_cjs.createStep({
|
|
230
230
|
id: "final-step",
|
|
231
231
|
inputSchema: networkWorkflow.outputSchema,
|
|
232
232
|
outputSchema: networkWorkflow.outputSchema,
|
|
@@ -240,7 +240,7 @@ var NewAgentNetwork = class extends chunkKXCUCBEI_cjs.MastraBase {
|
|
|
240
240
|
return inputData;
|
|
241
241
|
}
|
|
242
242
|
});
|
|
243
|
-
const mainWorkflow =
|
|
243
|
+
const mainWorkflow = chunk7OSUKFNG_cjs.createWorkflow({
|
|
244
244
|
id: "Agent-Network-Main-Workflow",
|
|
245
245
|
inputSchema: zod.z.object({
|
|
246
246
|
iteration: zod.z.number(),
|
|
@@ -285,7 +285,7 @@ var NewAgentNetwork = class extends chunkKXCUCBEI_cjs.MastraBase {
|
|
|
285
285
|
resourceId
|
|
286
286
|
}) {
|
|
287
287
|
const networkWorkflow = this.createWorkflow({ runtimeContext });
|
|
288
|
-
const finalStep =
|
|
288
|
+
const finalStep = chunk7OSUKFNG_cjs.createStep({
|
|
289
289
|
id: "final-step",
|
|
290
290
|
inputSchema: networkWorkflow.outputSchema,
|
|
291
291
|
outputSchema: networkWorkflow.outputSchema,
|
|
@@ -299,7 +299,7 @@ var NewAgentNetwork = class extends chunkKXCUCBEI_cjs.MastraBase {
|
|
|
299
299
|
return inputData;
|
|
300
300
|
}
|
|
301
301
|
});
|
|
302
|
-
const mainWorkflow =
|
|
302
|
+
const mainWorkflow = chunk7OSUKFNG_cjs.createWorkflow({
|
|
303
303
|
id: "Agent-Network-Main-Workflow",
|
|
304
304
|
inputSchema: zod.z.object({
|
|
305
305
|
iteration: zod.z.number(),
|
|
@@ -349,7 +349,7 @@ var NewAgentNetwork = class extends chunkKXCUCBEI_cjs.MastraBase {
|
|
|
349
349
|
createWorkflow({ runtimeContext }) {
|
|
350
350
|
const runId = this.#mastra?.generateId() || crypto.randomUUID();
|
|
351
351
|
const runtimeContextToUse = runtimeContext || new chunkGPWMM745_cjs.RuntimeContext();
|
|
352
|
-
const routingStep =
|
|
352
|
+
const routingStep = chunk7OSUKFNG_cjs.createStep({
|
|
353
353
|
id: "routing-step",
|
|
354
354
|
inputSchema: zod.z.object({
|
|
355
355
|
task: zod.z.string(),
|
|
@@ -479,7 +479,7 @@ ${completionResult.object.finalResult}` : ""}
|
|
|
479
479
|
};
|
|
480
480
|
}
|
|
481
481
|
});
|
|
482
|
-
const agentStep =
|
|
482
|
+
const agentStep = chunk7OSUKFNG_cjs.createStep({
|
|
483
483
|
id: "agent-step",
|
|
484
484
|
inputSchema: zod.z.object({
|
|
485
485
|
task: zod.z.string(),
|
|
@@ -615,7 +615,7 @@ ${completionResult.object.finalResult}` : ""}
|
|
|
615
615
|
};
|
|
616
616
|
}
|
|
617
617
|
});
|
|
618
|
-
const workflowStep =
|
|
618
|
+
const workflowStep = chunk7OSUKFNG_cjs.createStep({
|
|
619
619
|
id: "workflow-step",
|
|
620
620
|
inputSchema: zod.z.object({
|
|
621
621
|
task: zod.z.string(),
|
|
@@ -737,7 +737,7 @@ ${completionResult.object.finalResult}` : ""}
|
|
|
737
737
|
};
|
|
738
738
|
}
|
|
739
739
|
});
|
|
740
|
-
const toolStep =
|
|
740
|
+
const toolStep = chunk7OSUKFNG_cjs.createStep({
|
|
741
741
|
id: "toolStep",
|
|
742
742
|
inputSchema: zod.z.object({
|
|
743
743
|
task: zod.z.string(),
|
|
@@ -809,7 +809,7 @@ ${completionResult.object.finalResult}` : ""}
|
|
|
809
809
|
};
|
|
810
810
|
}
|
|
811
811
|
});
|
|
812
|
-
const finishStep =
|
|
812
|
+
const finishStep = chunk7OSUKFNG_cjs.createStep({
|
|
813
813
|
id: "finish-step",
|
|
814
814
|
inputSchema: zod.z.object({
|
|
815
815
|
task: zod.z.string(),
|
|
@@ -836,7 +836,7 @@ ${completionResult.object.finalResult}` : ""}
|
|
|
836
836
|
};
|
|
837
837
|
}
|
|
838
838
|
});
|
|
839
|
-
const networkWorkflow =
|
|
839
|
+
const networkWorkflow = chunk7OSUKFNG_cjs.createWorkflow({
|
|
840
840
|
id: "Agent-Network-Outer-Workflow",
|
|
841
841
|
inputSchema: zod.z.object({
|
|
842
842
|
task: zod.z.string(),
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Agent, createStep, createWorkflow } from '../../chunk-
|
|
1
|
+
import { Agent, createStep, createWorkflow } from '../../chunk-5NGEKEU7.js';
|
|
2
2
|
import { EMITTER_SYMBOL } from '../../chunk-GK5V7YTQ.js';
|
|
3
3
|
import { MessageList } from '../../chunk-C5C4PN54.js';
|
|
4
4
|
import { RuntimeContext } from '../../chunk-HLRWYUFN.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunk7OSUKFNG_cjs = require('../chunk-7OSUKFNG.cjs');
|
|
4
4
|
var lite = require('js-tiktoken/lite');
|
|
5
5
|
var o200k_base = require('js-tiktoken/ranks/o200k_base');
|
|
6
6
|
var zod = require('zod');
|
|
@@ -271,7 +271,7 @@ var SystemPromptScrubber = class {
|
|
|
271
271
|
this.placeholderText = options.placeholderText || "[SYSTEM_PROMPT]";
|
|
272
272
|
this.instructions = options.instructions || this.getDefaultInstructions();
|
|
273
273
|
this.model = options.model;
|
|
274
|
-
this.detectionAgent = new
|
|
274
|
+
this.detectionAgent = new chunk7OSUKFNG_cjs.Agent({
|
|
275
275
|
name: "system-prompt-detector",
|
|
276
276
|
model: this.model,
|
|
277
277
|
instructions: this.instructions
|
|
@@ -497,27 +497,27 @@ Be thorough but avoid false positives. Only flag content that genuinely represen
|
|
|
497
497
|
|
|
498
498
|
Object.defineProperty(exports, "LanguageDetector", {
|
|
499
499
|
enumerable: true,
|
|
500
|
-
get: function () { return
|
|
500
|
+
get: function () { return chunk7OSUKFNG_cjs.LanguageDetector; }
|
|
501
501
|
});
|
|
502
502
|
Object.defineProperty(exports, "ModerationProcessor", {
|
|
503
503
|
enumerable: true,
|
|
504
|
-
get: function () { return
|
|
504
|
+
get: function () { return chunk7OSUKFNG_cjs.ModerationProcessor; }
|
|
505
505
|
});
|
|
506
506
|
Object.defineProperty(exports, "PIIDetector", {
|
|
507
507
|
enumerable: true,
|
|
508
|
-
get: function () { return
|
|
508
|
+
get: function () { return chunk7OSUKFNG_cjs.PIIDetector; }
|
|
509
509
|
});
|
|
510
510
|
Object.defineProperty(exports, "PromptInjectionDetector", {
|
|
511
511
|
enumerable: true,
|
|
512
|
-
get: function () { return
|
|
512
|
+
get: function () { return chunk7OSUKFNG_cjs.PromptInjectionDetector; }
|
|
513
513
|
});
|
|
514
514
|
Object.defineProperty(exports, "StructuredOutputProcessor", {
|
|
515
515
|
enumerable: true,
|
|
516
|
-
get: function () { return
|
|
516
|
+
get: function () { return chunk7OSUKFNG_cjs.StructuredOutputProcessor; }
|
|
517
517
|
});
|
|
518
518
|
Object.defineProperty(exports, "UnicodeNormalizer", {
|
|
519
519
|
enumerable: true,
|
|
520
|
-
get: function () { return
|
|
520
|
+
get: function () { return chunk7OSUKFNG_cjs.UnicodeNormalizer; }
|
|
521
521
|
});
|
|
522
522
|
exports.BatchPartsProcessor = BatchPartsProcessor;
|
|
523
523
|
exports.SystemPromptScrubber = SystemPromptScrubber;
|
package/dist/processors/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Agent } from '../chunk-
|
|
2
|
-
export { LanguageDetector, ModerationProcessor, PIIDetector, PromptInjectionDetector, StructuredOutputProcessor, UnicodeNormalizer } from '../chunk-
|
|
1
|
+
import { Agent } from '../chunk-5NGEKEU7.js';
|
|
2
|
+
export { LanguageDetector, ModerationProcessor, PIIDetector, PromptInjectionDetector, StructuredOutputProcessor, UnicodeNormalizer } from '../chunk-5NGEKEU7.js';
|
|
3
3
|
import { Tiktoken } from 'js-tiktoken/lite';
|
|
4
4
|
import o200k_base from 'js-tiktoken/ranks/o200k_base';
|
|
5
5
|
import { z } from 'zod';
|
package/dist/relevance/index.cjs
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkWHEH32QU_cjs = require('../chunk-WHEH32QU.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
Object.defineProperty(exports, "CohereRelevanceScorer", {
|
|
8
8
|
enumerable: true,
|
|
9
|
-
get: function () { return
|
|
9
|
+
get: function () { return chunkWHEH32QU_cjs.CohereRelevanceScorer; }
|
|
10
10
|
});
|
|
11
11
|
Object.defineProperty(exports, "MastraAgentRelevanceScorer", {
|
|
12
12
|
enumerable: true,
|
|
13
|
-
get: function () { return
|
|
13
|
+
get: function () { return chunkWHEH32QU_cjs.MastraAgentRelevanceScorer; }
|
|
14
14
|
});
|
|
15
15
|
Object.defineProperty(exports, "createSimilarityPrompt", {
|
|
16
16
|
enumerable: true,
|
|
17
|
-
get: function () { return
|
|
17
|
+
get: function () { return chunkWHEH32QU_cjs.createSimilarityPrompt; }
|
|
18
18
|
});
|
|
19
19
|
//# sourceMappingURL=index.cjs.map
|
|
20
20
|
//# sourceMappingURL=index.cjs.map
|
package/dist/relevance/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { CohereRelevanceScorer, MastraAgentRelevanceScorer, createSimilarityPrompt } from '../chunk-
|
|
1
|
+
export { CohereRelevanceScorer, MastraAgentRelevanceScorer, createSimilarityPrompt } from '../chunk-IYCG5OVT.js';
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
3
3
|
//# sourceMappingURL=index.js.map
|
package/dist/scores/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunk7OSUKFNG_cjs = require('../chunk-7OSUKFNG.cjs');
|
|
4
4
|
var chunkC73WLCY3_cjs = require('../chunk-C73WLCY3.cjs');
|
|
5
5
|
var zod = require('zod');
|
|
6
6
|
var crypto = require('crypto');
|
|
@@ -161,7 +161,7 @@ var MastraScorer = class _MastraScorer {
|
|
|
161
161
|
}
|
|
162
162
|
toMastraWorkflow() {
|
|
163
163
|
const workflowSteps = this.steps.map((scorerStep) => {
|
|
164
|
-
return
|
|
164
|
+
return chunk7OSUKFNG_cjs.createStep({
|
|
165
165
|
id: scorerStep.name,
|
|
166
166
|
description: `Scorer step: ${scorerStep.name}`,
|
|
167
167
|
inputSchema: zod.z.any(),
|
|
@@ -194,7 +194,7 @@ var MastraScorer = class _MastraScorer {
|
|
|
194
194
|
}
|
|
195
195
|
});
|
|
196
196
|
});
|
|
197
|
-
const workflow =
|
|
197
|
+
const workflow = chunk7OSUKFNG_cjs.createWorkflow({
|
|
198
198
|
id: `scorer-${this.config.name}`,
|
|
199
199
|
description: this.config.description,
|
|
200
200
|
inputSchema: zod.z.object({
|
|
@@ -249,7 +249,7 @@ var MastraScorer = class _MastraScorer {
|
|
|
249
249
|
}
|
|
250
250
|
});
|
|
251
251
|
}
|
|
252
|
-
const judge = new
|
|
252
|
+
const judge = new chunk7OSUKFNG_cjs.Agent({ name: "judge", model, instructions });
|
|
253
253
|
if (scorerStep.name === "generateScore") {
|
|
254
254
|
let result;
|
|
255
255
|
if (model.specificationVersion === "v2") {
|
|
@@ -433,7 +433,7 @@ async function runExperiment(config) {
|
|
|
433
433
|
};
|
|
434
434
|
}
|
|
435
435
|
function isWorkflow(target) {
|
|
436
|
-
return target instanceof
|
|
436
|
+
return target instanceof chunk7OSUKFNG_cjs.Workflow;
|
|
437
437
|
}
|
|
438
438
|
function isWorkflowScorerConfig(scorers) {
|
|
439
439
|
return typeof scorers === "object" && !Array.isArray(scorers) && ("workflow" in scorers || "steps" in scorers);
|
package/dist/scores/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { createStep, createWorkflow, Agent, Workflow } from '../chunk-
|
|
1
|
+
import { createStep, createWorkflow, Agent, Workflow } from '../chunk-5NGEKEU7.js';
|
|
2
2
|
import { MastraError } from '../chunk-MCOVMKIS.js';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
import { randomUUID } from 'crypto';
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import type { LanguageModelV2FunctionTool, LanguageModelV2ProviderDefinedTool, LanguageModelV2ToolChoice } from '@ai-sdk/provider-v5';
|
|
2
|
-
import type { Schema, TextStreamPart, Tool, ToolChoice, ToolSet, UIMessage } from 'ai-v5';
|
|
3
|
-
export declare function convertFullStreamChunkToUIMessageStream({ part, messageMetadataValue, sendReasoning, sendSources, onError, sendStart, sendFinish, responseMessageId, }: {
|
|
4
|
-
part: TextStreamPart<ToolSet
|
|
2
|
+
import type { InferUIMessageChunk, Schema, TextStreamPart, Tool, ToolChoice, ToolSet, UIMessage } from 'ai-v5';
|
|
3
|
+
export declare function convertFullStreamChunkToUIMessageStream<UI_MESSAGE extends UIMessage>({ part, messageMetadataValue, sendReasoning, sendSources, onError, sendStart, sendFinish, responseMessageId, }: {
|
|
4
|
+
part: TextStreamPart<ToolSet> | {
|
|
5
|
+
type: 'tool-output';
|
|
6
|
+
toolCallId: string;
|
|
7
|
+
output: any;
|
|
8
|
+
};
|
|
5
9
|
messageMetadataValue?: any;
|
|
6
10
|
sendReasoning?: boolean;
|
|
7
11
|
sendSources?: boolean;
|
|
@@ -9,120 +13,7 @@ export declare function convertFullStreamChunkToUIMessageStream({ part, messageM
|
|
|
9
13
|
sendStart?: boolean;
|
|
10
14
|
sendFinish?: boolean;
|
|
11
15
|
responseMessageId?: string;
|
|
12
|
-
}):
|
|
13
|
-
type: "abort";
|
|
14
|
-
} | {
|
|
15
|
-
providerMetadata?: import("@ai-sdk/provider-v5").SharedV2ProviderMetadata | undefined;
|
|
16
|
-
type: string;
|
|
17
|
-
id: string;
|
|
18
|
-
mediaType?: undefined;
|
|
19
|
-
url?: undefined;
|
|
20
|
-
toolCallId?: undefined;
|
|
21
|
-
inputTextDelta?: undefined;
|
|
22
|
-
errorText?: undefined;
|
|
23
|
-
} | {
|
|
24
|
-
providerMetadata?: import("@ai-sdk/provider-v5").SharedV2ProviderMetadata | undefined;
|
|
25
|
-
type: string;
|
|
26
|
-
id: string;
|
|
27
|
-
delta: string;
|
|
28
|
-
mediaType?: undefined;
|
|
29
|
-
url?: undefined;
|
|
30
|
-
toolCallId?: undefined;
|
|
31
|
-
inputTextDelta?: undefined;
|
|
32
|
-
errorText?: undefined;
|
|
33
|
-
} | {
|
|
34
|
-
type: string;
|
|
35
|
-
mediaType: string;
|
|
36
|
-
url: string;
|
|
37
|
-
toolCallId?: undefined;
|
|
38
|
-
inputTextDelta?: undefined;
|
|
39
|
-
errorText?: undefined;
|
|
40
|
-
} | {
|
|
41
|
-
providerMetadata?: import("@ai-sdk/provider-v5").SharedV2ProviderMetadata | undefined;
|
|
42
|
-
type: string;
|
|
43
|
-
sourceId: string;
|
|
44
|
-
url: string;
|
|
45
|
-
title: string | undefined;
|
|
46
|
-
mediaType?: undefined;
|
|
47
|
-
toolCallId?: undefined;
|
|
48
|
-
inputTextDelta?: undefined;
|
|
49
|
-
errorText?: undefined;
|
|
50
|
-
} | {
|
|
51
|
-
providerMetadata?: import("@ai-sdk/provider-v5").SharedV2ProviderMetadata | undefined;
|
|
52
|
-
type: string;
|
|
53
|
-
sourceId: string;
|
|
54
|
-
mediaType: string;
|
|
55
|
-
title: string;
|
|
56
|
-
filename: string | undefined;
|
|
57
|
-
url?: undefined;
|
|
58
|
-
toolCallId?: undefined;
|
|
59
|
-
inputTextDelta?: undefined;
|
|
60
|
-
errorText?: undefined;
|
|
61
|
-
} | {
|
|
62
|
-
dynamic?: boolean | undefined;
|
|
63
|
-
providerExecuted?: boolean | undefined;
|
|
64
|
-
type: string;
|
|
65
|
-
toolCallId: string;
|
|
66
|
-
toolName: string;
|
|
67
|
-
mediaType?: undefined;
|
|
68
|
-
url?: undefined;
|
|
69
|
-
inputTextDelta?: undefined;
|
|
70
|
-
errorText?: undefined;
|
|
71
|
-
} | {
|
|
72
|
-
type: string;
|
|
73
|
-
toolCallId: string;
|
|
74
|
-
inputTextDelta: string;
|
|
75
|
-
mediaType?: undefined;
|
|
76
|
-
url?: undefined;
|
|
77
|
-
errorText?: undefined;
|
|
78
|
-
} | {
|
|
79
|
-
dynamic?: boolean | undefined;
|
|
80
|
-
providerMetadata?: import("@ai-sdk/provider-v5").SharedV2ProviderMetadata | undefined;
|
|
81
|
-
providerExecuted?: boolean | undefined;
|
|
82
|
-
type: string;
|
|
83
|
-
toolCallId: string;
|
|
84
|
-
toolName: string;
|
|
85
|
-
input: any;
|
|
86
|
-
mediaType?: undefined;
|
|
87
|
-
url?: undefined;
|
|
88
|
-
inputTextDelta?: undefined;
|
|
89
|
-
errorText?: undefined;
|
|
90
|
-
} | {
|
|
91
|
-
dynamic?: boolean | undefined;
|
|
92
|
-
providerExecuted?: boolean | undefined;
|
|
93
|
-
type: string;
|
|
94
|
-
toolCallId: string;
|
|
95
|
-
output: any;
|
|
96
|
-
mediaType?: undefined;
|
|
97
|
-
url?: undefined;
|
|
98
|
-
inputTextDelta?: undefined;
|
|
99
|
-
errorText?: undefined;
|
|
100
|
-
} | {
|
|
101
|
-
dynamic?: boolean | undefined;
|
|
102
|
-
providerExecuted?: boolean | undefined;
|
|
103
|
-
type: string;
|
|
104
|
-
toolCallId: string;
|
|
105
|
-
errorText: string;
|
|
106
|
-
mediaType?: undefined;
|
|
107
|
-
url?: undefined;
|
|
108
|
-
inputTextDelta?: undefined;
|
|
109
|
-
} | {
|
|
110
|
-
type: string;
|
|
111
|
-
errorText: string;
|
|
112
|
-
mediaType?: undefined;
|
|
113
|
-
url?: undefined;
|
|
114
|
-
toolCallId?: undefined;
|
|
115
|
-
inputTextDelta?: undefined;
|
|
116
|
-
} | {
|
|
117
|
-
messageId?: string | undefined;
|
|
118
|
-
messageMetadata?: any;
|
|
119
|
-
type: string;
|
|
120
|
-
mediaType?: undefined;
|
|
121
|
-
url?: undefined;
|
|
122
|
-
toolCallId?: undefined;
|
|
123
|
-
inputTextDelta?: undefined;
|
|
124
|
-
errorText?: undefined;
|
|
125
|
-
} | undefined;
|
|
16
|
+
}): InferUIMessageChunk<UI_MESSAGE> | undefined;
|
|
126
17
|
export declare function getResponseUIMessageId({ originalMessages, responseMessageId, }: {
|
|
127
18
|
originalMessages: UIMessage[] | undefined;
|
|
128
19
|
responseMessageId: string | any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"compat.d.ts","sourceRoot":"","sources":["../../../../src/stream/aisdk/v5/compat.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,2BAA2B,EAC3B,kCAAkC,EAClC,yBAAyB,EAC1B,MAAM,qBAAqB,CAAC;AAG7B,OAAO,KAAK,EAAE,MAAM,EAAE,cAAc,EAAE,IAAI,EAAE,UAAU,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"compat.d.ts","sourceRoot":"","sources":["../../../../src/stream/aisdk/v5/compat.ts"],"names":[],"mappings":"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"}
|
package/dist/stream/index.cjs
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunk7OSUKFNG_cjs = require('../chunk-7OSUKFNG.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
Object.defineProperty(exports, "AISDKV5OutputStream", {
|
|
8
8
|
enumerable: true,
|
|
9
|
-
get: function () { return
|
|
9
|
+
get: function () { return chunk7OSUKFNG_cjs.AISDKV5OutputStream; }
|
|
10
10
|
});
|
|
11
11
|
Object.defineProperty(exports, "MastraModelOutput", {
|
|
12
12
|
enumerable: true,
|
|
13
|
-
get: function () { return
|
|
13
|
+
get: function () { return chunk7OSUKFNG_cjs.MastraModelOutput; }
|
|
14
14
|
});
|
|
15
15
|
//# sourceMappingURL=index.cjs.map
|
|
16
16
|
//# sourceMappingURL=index.cjs.map
|
package/dist/stream/index.js
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkHXYE4EJA_cjs = require('../../chunk-HXYE4EJA.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
Object.defineProperty(exports, "EventedExecutionEngine", {
|
|
8
8
|
enumerable: true,
|
|
9
|
-
get: function () { return
|
|
9
|
+
get: function () { return chunkHXYE4EJA_cjs.EventedExecutionEngine; }
|
|
10
10
|
});
|
|
11
11
|
Object.defineProperty(exports, "EventedRun", {
|
|
12
12
|
enumerable: true,
|
|
13
|
-
get: function () { return
|
|
13
|
+
get: function () { return chunkHXYE4EJA_cjs.EventedRun; }
|
|
14
14
|
});
|
|
15
15
|
Object.defineProperty(exports, "EventedWorkflow", {
|
|
16
16
|
enumerable: true,
|
|
17
|
-
get: function () { return
|
|
17
|
+
get: function () { return chunkHXYE4EJA_cjs.EventedWorkflow; }
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "StepExecutor", {
|
|
20
20
|
enumerable: true,
|
|
21
|
-
get: function () { return
|
|
21
|
+
get: function () { return chunkHXYE4EJA_cjs.StepExecutor; }
|
|
22
22
|
});
|
|
23
23
|
Object.defineProperty(exports, "WorkflowEventProcessor", {
|
|
24
24
|
enumerable: true,
|
|
25
|
-
get: function () { return
|
|
25
|
+
get: function () { return chunkHXYE4EJA_cjs.WorkflowEventProcessor; }
|
|
26
26
|
});
|
|
27
27
|
Object.defineProperty(exports, "cloneStep", {
|
|
28
28
|
enumerable: true,
|
|
29
|
-
get: function () { return
|
|
29
|
+
get: function () { return chunkHXYE4EJA_cjs.cloneStep; }
|
|
30
30
|
});
|
|
31
31
|
Object.defineProperty(exports, "cloneWorkflow", {
|
|
32
32
|
enumerable: true,
|
|
33
|
-
get: function () { return
|
|
33
|
+
get: function () { return chunkHXYE4EJA_cjs.cloneWorkflow; }
|
|
34
34
|
});
|
|
35
35
|
Object.defineProperty(exports, "createStep", {
|
|
36
36
|
enumerable: true,
|
|
37
|
-
get: function () { return
|
|
37
|
+
get: function () { return chunkHXYE4EJA_cjs.createStep; }
|
|
38
38
|
});
|
|
39
39
|
Object.defineProperty(exports, "createWorkflow", {
|
|
40
40
|
enumerable: true,
|
|
41
|
-
get: function () { return
|
|
41
|
+
get: function () { return chunkHXYE4EJA_cjs.createWorkflow; }
|
|
42
42
|
});
|
|
43
43
|
//# sourceMappingURL=index.cjs.map
|
|
44
44
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { EventedExecutionEngine, EventedRun, EventedWorkflow, StepExecutor, WorkflowEventProcessor, cloneStep, cloneWorkflow, createStep, createWorkflow } from '../../chunk-
|
|
1
|
+
export { EventedExecutionEngine, EventedRun, EventedWorkflow, StepExecutor, WorkflowEventProcessor, cloneStep, cloneWorkflow, createStep, createWorkflow } from '../../chunk-T64BA34G.js';
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
3
3
|
//# sourceMappingURL=index.js.map
|
package/dist/workflows/index.cjs
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunk7OSUKFNG_cjs = require('../chunk-7OSUKFNG.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
Object.defineProperty(exports, "DefaultExecutionEngine", {
|
|
8
8
|
enumerable: true,
|
|
9
|
-
get: function () { return
|
|
9
|
+
get: function () { return chunk7OSUKFNG_cjs.DefaultExecutionEngine; }
|
|
10
10
|
});
|
|
11
11
|
Object.defineProperty(exports, "ExecutionEngine", {
|
|
12
12
|
enumerable: true,
|
|
13
|
-
get: function () { return
|
|
13
|
+
get: function () { return chunk7OSUKFNG_cjs.ExecutionEngine; }
|
|
14
14
|
});
|
|
15
15
|
Object.defineProperty(exports, "Run", {
|
|
16
16
|
enumerable: true,
|
|
17
|
-
get: function () { return
|
|
17
|
+
get: function () { return chunk7OSUKFNG_cjs.Run; }
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "Workflow", {
|
|
20
20
|
enumerable: true,
|
|
21
|
-
get: function () { return
|
|
21
|
+
get: function () { return chunk7OSUKFNG_cjs.Workflow; }
|
|
22
22
|
});
|
|
23
23
|
Object.defineProperty(exports, "cloneStep", {
|
|
24
24
|
enumerable: true,
|
|
25
|
-
get: function () { return
|
|
25
|
+
get: function () { return chunk7OSUKFNG_cjs.cloneStep; }
|
|
26
26
|
});
|
|
27
27
|
Object.defineProperty(exports, "cloneWorkflow", {
|
|
28
28
|
enumerable: true,
|
|
29
|
-
get: function () { return
|
|
29
|
+
get: function () { return chunk7OSUKFNG_cjs.cloneWorkflow; }
|
|
30
30
|
});
|
|
31
31
|
Object.defineProperty(exports, "createStep", {
|
|
32
32
|
enumerable: true,
|
|
33
|
-
get: function () { return
|
|
33
|
+
get: function () { return chunk7OSUKFNG_cjs.createStep; }
|
|
34
34
|
});
|
|
35
35
|
Object.defineProperty(exports, "createWorkflow", {
|
|
36
36
|
enumerable: true,
|
|
37
|
-
get: function () { return
|
|
37
|
+
get: function () { return chunk7OSUKFNG_cjs.createWorkflow; }
|
|
38
38
|
});
|
|
39
39
|
Object.defineProperty(exports, "mapVariable", {
|
|
40
40
|
enumerable: true,
|
|
41
|
-
get: function () { return
|
|
41
|
+
get: function () { return chunk7OSUKFNG_cjs.mapVariable; }
|
|
42
42
|
});
|
|
43
43
|
//# sourceMappingURL=index.cjs.map
|
|
44
44
|
//# sourceMappingURL=index.cjs.map
|
package/dist/workflows/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { DefaultExecutionEngine, ExecutionEngine, Run, Workflow, cloneStep, cloneWorkflow, createStep, createWorkflow, mapVariable } from '../chunk-
|
|
1
|
+
export { DefaultExecutionEngine, ExecutionEngine, Run, Workflow, cloneStep, cloneWorkflow, createStep, createWorkflow, mapVariable } from '../chunk-5NGEKEU7.js';
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
3
3
|
//# sourceMappingURL=index.js.map
|