@eko-ai/eko 2.0.3-alpha.1 → 2.0.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/index.cjs.js +13 -13
- package/dist/index.esm.js +13 -13
- package/dist/types/core.types.d.ts +1 -1
- package/dist/types/core.types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -16149,7 +16149,7 @@ class Agent {
|
|
|
16149
16149
|
let llmToolResult = this.convertToolResult(result, toolResult, user_messages);
|
|
16150
16150
|
toolResults.push(llmToolResult);
|
|
16151
16151
|
if (context.config.callback) {
|
|
16152
|
-
context.config.callback.onMessage({
|
|
16152
|
+
await context.config.callback.onMessage({
|
|
16153
16153
|
taskId: context.taskId,
|
|
16154
16154
|
agentName: result.toolName,
|
|
16155
16155
|
nodeId: agentContext.agentChain.agent.id,
|
|
@@ -16421,7 +16421,7 @@ class Agent {
|
|
|
16421
16421
|
let agentChain = agentContext.agentChain;
|
|
16422
16422
|
let agentNode = agentChain.agent;
|
|
16423
16423
|
let streamCallback = context.config.callback || {
|
|
16424
|
-
onMessage: () => { },
|
|
16424
|
+
onMessage: async () => { },
|
|
16425
16425
|
};
|
|
16426
16426
|
let request = {
|
|
16427
16427
|
tools: tools,
|
|
@@ -16448,7 +16448,7 @@ class Agent {
|
|
|
16448
16448
|
switch (chunk.type) {
|
|
16449
16449
|
case "text-delta": {
|
|
16450
16450
|
streamText += chunk.textDelta || "";
|
|
16451
|
-
streamCallback.onMessage({
|
|
16451
|
+
await streamCallback.onMessage({
|
|
16452
16452
|
taskId: context.taskId,
|
|
16453
16453
|
agentName: agentNode.name,
|
|
16454
16454
|
nodeId: agentNode.id,
|
|
@@ -16461,7 +16461,7 @@ class Agent {
|
|
|
16461
16461
|
}
|
|
16462
16462
|
case "reasoning": {
|
|
16463
16463
|
thinkText += chunk.textDelta || "";
|
|
16464
|
-
streamCallback.onMessage({
|
|
16464
|
+
await streamCallback.onMessage({
|
|
16465
16465
|
taskId: context.taskId,
|
|
16466
16466
|
agentName: agentNode.name,
|
|
16467
16467
|
nodeId: agentNode.id,
|
|
@@ -16475,7 +16475,7 @@ class Agent {
|
|
|
16475
16475
|
case "tool-call-delta": {
|
|
16476
16476
|
if (!textStreamDone) {
|
|
16477
16477
|
textStreamDone = true;
|
|
16478
|
-
streamCallback.onMessage({
|
|
16478
|
+
await streamCallback.onMessage({
|
|
16479
16479
|
taskId: context.taskId,
|
|
16480
16480
|
agentName: agentNode.name,
|
|
16481
16481
|
nodeId: agentNode.id,
|
|
@@ -16486,7 +16486,7 @@ class Agent {
|
|
|
16486
16486
|
});
|
|
16487
16487
|
}
|
|
16488
16488
|
toolArgsText += chunk.argsTextDelta || "";
|
|
16489
|
-
streamCallback.onMessage({
|
|
16489
|
+
await streamCallback.onMessage({
|
|
16490
16490
|
taskId: context.taskId,
|
|
16491
16491
|
agentName: agentNode.name,
|
|
16492
16492
|
nodeId: agentNode.id,
|
|
@@ -16500,7 +16500,7 @@ class Agent {
|
|
|
16500
16500
|
case "tool-call": {
|
|
16501
16501
|
toolArgsText = "";
|
|
16502
16502
|
let args = chunk.args ? JSON.parse(chunk.args) : {};
|
|
16503
|
-
streamCallback.onMessage({
|
|
16503
|
+
await streamCallback.onMessage({
|
|
16504
16504
|
taskId: context.taskId,
|
|
16505
16505
|
agentName: agentNode.name,
|
|
16506
16506
|
nodeId: agentNode.id,
|
|
@@ -16518,7 +16518,7 @@ class Agent {
|
|
|
16518
16518
|
break;
|
|
16519
16519
|
}
|
|
16520
16520
|
case "file": {
|
|
16521
|
-
streamCallback.onMessage({
|
|
16521
|
+
await streamCallback.onMessage({
|
|
16522
16522
|
taskId: context.taskId,
|
|
16523
16523
|
agentName: agentNode.name,
|
|
16524
16524
|
nodeId: agentNode.id,
|
|
@@ -16530,7 +16530,7 @@ class Agent {
|
|
|
16530
16530
|
}
|
|
16531
16531
|
case "error": {
|
|
16532
16532
|
Log.error(`${this.name} agent error: `, chunk);
|
|
16533
|
-
streamCallback.onMessage({
|
|
16533
|
+
await streamCallback.onMessage({
|
|
16534
16534
|
taskId: context.taskId,
|
|
16535
16535
|
agentName: agentNode.name,
|
|
16536
16536
|
nodeId: agentNode.id,
|
|
@@ -16542,7 +16542,7 @@ class Agent {
|
|
|
16542
16542
|
case "finish": {
|
|
16543
16543
|
if (!textStreamDone) {
|
|
16544
16544
|
textStreamDone = true;
|
|
16545
|
-
streamCallback.onMessage({
|
|
16545
|
+
await streamCallback.onMessage({
|
|
16546
16546
|
taskId: context.taskId,
|
|
16547
16547
|
agentName: agentNode.name,
|
|
16548
16548
|
nodeId: agentNode.id,
|
|
@@ -16552,7 +16552,7 @@ class Agent {
|
|
|
16552
16552
|
text: streamText,
|
|
16553
16553
|
});
|
|
16554
16554
|
}
|
|
16555
|
-
streamCallback.onMessage({
|
|
16555
|
+
await streamCallback.onMessage({
|
|
16556
16556
|
taskId: context.taskId,
|
|
16557
16557
|
agentName: agentNode.name,
|
|
16558
16558
|
nodeId: agentNode.id,
|
|
@@ -16897,7 +16897,7 @@ class Planner {
|
|
|
16897
16897
|
if (config.callback) {
|
|
16898
16898
|
let workflow = parseWorkflow(this.taskId, streamText, false);
|
|
16899
16899
|
if (workflow) {
|
|
16900
|
-
config.callback.onMessage({
|
|
16900
|
+
await config.callback.onMessage({
|
|
16901
16901
|
taskId: this.taskId,
|
|
16902
16902
|
agentName: "Planer",
|
|
16903
16903
|
type: "workflow",
|
|
@@ -16916,7 +16916,7 @@ class Planner {
|
|
|
16916
16916
|
chain.planResult = streamText;
|
|
16917
16917
|
let workflow = parseWorkflow(this.taskId, streamText, true);
|
|
16918
16918
|
if (config.callback) {
|
|
16919
|
-
config.callback.onMessage({
|
|
16919
|
+
await config.callback.onMessage({
|
|
16920
16920
|
taskId: this.taskId,
|
|
16921
16921
|
agentName: "Planer",
|
|
16922
16922
|
type: "workflow",
|
package/dist/index.esm.js
CHANGED
|
@@ -16114,7 +16114,7 @@ class Agent {
|
|
|
16114
16114
|
let llmToolResult = this.convertToolResult(result, toolResult, user_messages);
|
|
16115
16115
|
toolResults.push(llmToolResult);
|
|
16116
16116
|
if (context.config.callback) {
|
|
16117
|
-
context.config.callback.onMessage({
|
|
16117
|
+
await context.config.callback.onMessage({
|
|
16118
16118
|
taskId: context.taskId,
|
|
16119
16119
|
agentName: result.toolName,
|
|
16120
16120
|
nodeId: agentContext.agentChain.agent.id,
|
|
@@ -16386,7 +16386,7 @@ class Agent {
|
|
|
16386
16386
|
let agentChain = agentContext.agentChain;
|
|
16387
16387
|
let agentNode = agentChain.agent;
|
|
16388
16388
|
let streamCallback = context.config.callback || {
|
|
16389
|
-
onMessage: () => { },
|
|
16389
|
+
onMessage: async () => { },
|
|
16390
16390
|
};
|
|
16391
16391
|
let request = {
|
|
16392
16392
|
tools: tools,
|
|
@@ -16413,7 +16413,7 @@ class Agent {
|
|
|
16413
16413
|
switch (chunk.type) {
|
|
16414
16414
|
case "text-delta": {
|
|
16415
16415
|
streamText += chunk.textDelta || "";
|
|
16416
|
-
streamCallback.onMessage({
|
|
16416
|
+
await streamCallback.onMessage({
|
|
16417
16417
|
taskId: context.taskId,
|
|
16418
16418
|
agentName: agentNode.name,
|
|
16419
16419
|
nodeId: agentNode.id,
|
|
@@ -16426,7 +16426,7 @@ class Agent {
|
|
|
16426
16426
|
}
|
|
16427
16427
|
case "reasoning": {
|
|
16428
16428
|
thinkText += chunk.textDelta || "";
|
|
16429
|
-
streamCallback.onMessage({
|
|
16429
|
+
await streamCallback.onMessage({
|
|
16430
16430
|
taskId: context.taskId,
|
|
16431
16431
|
agentName: agentNode.name,
|
|
16432
16432
|
nodeId: agentNode.id,
|
|
@@ -16440,7 +16440,7 @@ class Agent {
|
|
|
16440
16440
|
case "tool-call-delta": {
|
|
16441
16441
|
if (!textStreamDone) {
|
|
16442
16442
|
textStreamDone = true;
|
|
16443
|
-
streamCallback.onMessage({
|
|
16443
|
+
await streamCallback.onMessage({
|
|
16444
16444
|
taskId: context.taskId,
|
|
16445
16445
|
agentName: agentNode.name,
|
|
16446
16446
|
nodeId: agentNode.id,
|
|
@@ -16451,7 +16451,7 @@ class Agent {
|
|
|
16451
16451
|
});
|
|
16452
16452
|
}
|
|
16453
16453
|
toolArgsText += chunk.argsTextDelta || "";
|
|
16454
|
-
streamCallback.onMessage({
|
|
16454
|
+
await streamCallback.onMessage({
|
|
16455
16455
|
taskId: context.taskId,
|
|
16456
16456
|
agentName: agentNode.name,
|
|
16457
16457
|
nodeId: agentNode.id,
|
|
@@ -16465,7 +16465,7 @@ class Agent {
|
|
|
16465
16465
|
case "tool-call": {
|
|
16466
16466
|
toolArgsText = "";
|
|
16467
16467
|
let args = chunk.args ? JSON.parse(chunk.args) : {};
|
|
16468
|
-
streamCallback.onMessage({
|
|
16468
|
+
await streamCallback.onMessage({
|
|
16469
16469
|
taskId: context.taskId,
|
|
16470
16470
|
agentName: agentNode.name,
|
|
16471
16471
|
nodeId: agentNode.id,
|
|
@@ -16483,7 +16483,7 @@ class Agent {
|
|
|
16483
16483
|
break;
|
|
16484
16484
|
}
|
|
16485
16485
|
case "file": {
|
|
16486
|
-
streamCallback.onMessage({
|
|
16486
|
+
await streamCallback.onMessage({
|
|
16487
16487
|
taskId: context.taskId,
|
|
16488
16488
|
agentName: agentNode.name,
|
|
16489
16489
|
nodeId: agentNode.id,
|
|
@@ -16495,7 +16495,7 @@ class Agent {
|
|
|
16495
16495
|
}
|
|
16496
16496
|
case "error": {
|
|
16497
16497
|
Log.error(`${this.name} agent error: `, chunk);
|
|
16498
|
-
streamCallback.onMessage({
|
|
16498
|
+
await streamCallback.onMessage({
|
|
16499
16499
|
taskId: context.taskId,
|
|
16500
16500
|
agentName: agentNode.name,
|
|
16501
16501
|
nodeId: agentNode.id,
|
|
@@ -16507,7 +16507,7 @@ class Agent {
|
|
|
16507
16507
|
case "finish": {
|
|
16508
16508
|
if (!textStreamDone) {
|
|
16509
16509
|
textStreamDone = true;
|
|
16510
|
-
streamCallback.onMessage({
|
|
16510
|
+
await streamCallback.onMessage({
|
|
16511
16511
|
taskId: context.taskId,
|
|
16512
16512
|
agentName: agentNode.name,
|
|
16513
16513
|
nodeId: agentNode.id,
|
|
@@ -16517,7 +16517,7 @@ class Agent {
|
|
|
16517
16517
|
text: streamText,
|
|
16518
16518
|
});
|
|
16519
16519
|
}
|
|
16520
|
-
streamCallback.onMessage({
|
|
16520
|
+
await streamCallback.onMessage({
|
|
16521
16521
|
taskId: context.taskId,
|
|
16522
16522
|
agentName: agentNode.name,
|
|
16523
16523
|
nodeId: agentNode.id,
|
|
@@ -16862,7 +16862,7 @@ class Planner {
|
|
|
16862
16862
|
if (config.callback) {
|
|
16863
16863
|
let workflow = parseWorkflow(this.taskId, streamText, false);
|
|
16864
16864
|
if (workflow) {
|
|
16865
|
-
config.callback.onMessage({
|
|
16865
|
+
await config.callback.onMessage({
|
|
16866
16866
|
taskId: this.taskId,
|
|
16867
16867
|
agentName: "Planer",
|
|
16868
16868
|
type: "workflow",
|
|
@@ -16881,7 +16881,7 @@ class Planner {
|
|
|
16881
16881
|
chain.planResult = streamText;
|
|
16882
16882
|
let workflow = parseWorkflow(this.taskId, streamText, true);
|
|
16883
16883
|
if (config.callback) {
|
|
16884
|
-
config.callback.onMessage({
|
|
16884
|
+
await config.callback.onMessage({
|
|
16885
16885
|
taskId: this.taskId,
|
|
16886
16886
|
agentName: "Planer",
|
|
16887
16887
|
type: "workflow",
|
|
@@ -65,7 +65,7 @@ export type StreamCallbackMessage = {
|
|
|
65
65
|
};
|
|
66
66
|
});
|
|
67
67
|
export interface StreamCallback {
|
|
68
|
-
onMessage: (message: StreamCallbackMessage) => void
|
|
68
|
+
onMessage: (message: StreamCallbackMessage) => Promise<void>;
|
|
69
69
|
}
|
|
70
70
|
export type WorkflowTextNode = {
|
|
71
71
|
type: "normal";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"core.types.d.ts","sourceRoot":"","sources":["../../src/types/core.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAC/D,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AACjC,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAC;AACnC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAE/C,MAAM,MAAM,SAAS,GAAG;IACtB,IAAI,EAAE,IAAI,CAAC;IACX,MAAM,CAAC,EAAE,KAAK,EAAE,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,QAAQ,CAAC,EAAE,cAAc,GAAG,aAAa,CAAC;IAC1C,gBAAgB,CAAC,EAAE,UAAU,CAAC;IAC9B,SAAS,CAAC,EAAE,UAAU,CAAC;CACxB,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG;IAClC,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACxB,GAAG,CACA;IACE,IAAI,EAAE,UAAU,CAAC;IACjB,UAAU,EAAE,OAAO,CAAC;IACpB,QAAQ,EAAE,QAAQ,CAAC;CACpB,GACD;IACE,IAAI,EAAE,MAAM,GAAG,UAAU,CAAC;IAC1B,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,OAAO,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;CACd,GACD;IACE,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;CACd,GACD;IACE,IAAI,EAAE,gBAAgB,CAAC;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,EAAE,MAAM,CAAC;CACpB,GACD;IACE,IAAI,EAAE,UAAU,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAC7B,GACD;IACE,IAAI,EAAE,cAAc,CAAC;IACrB,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,OAAO,CAAC;CACrB,GACD;IACE,IAAI,EAAE,aAAa,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC5B,UAAU,EAAE,UAAU,CAAC;CACxB,GACD;IACE,IAAI,EAAE,OAAO,CAAC;IACd,KAAK,EAAE,OAAO,CAAC;CAChB,GACD;IACE,IAAI,EAAE,QAAQ,CAAC;IACf,YAAY,EAAE,2BAA2B,CAAC;IAC1C,KAAK,EAAE;QACL,YAAY,EAAE,MAAM,CAAC;QACrB,gBAAgB,EAAE,MAAM,CAAC;KAC1B,CAAC;CACH,CACJ,CAAC;AAEF,MAAM,WAAW,cAAc;IAC7B,SAAS,EAAE,CAAC,OAAO,EAAE,qBAAqB,KAAK,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"core.types.d.ts","sourceRoot":"","sources":["../../src/types/core.types.ts"],"names":[],"mappings":"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"}
|