@langchain/core 0.2.4 → 0.2.5
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/messages/ai.cjs +42 -3
- package/dist/messages/ai.d.ts +26 -0
- package/dist/messages/ai.js +42 -3
- package/dist/runnables/base.cjs +11 -6
- package/dist/runnables/base.js +11 -6
- package/dist/runnables/remote.cjs +6 -3
- package/dist/runnables/remote.js +6 -3
- package/dist/tracers/event_stream.cjs +10 -20
- package/dist/tracers/event_stream.d.ts +1 -3
- package/dist/tracers/event_stream.js +10 -20
- package/package.json +1 -1
package/dist/messages/ai.cjs
CHANGED
|
@@ -76,11 +76,21 @@ class AIMessage extends base_js_1.BaseMessage {
|
|
|
76
76
|
writable: true,
|
|
77
77
|
value: []
|
|
78
78
|
});
|
|
79
|
+
/**
|
|
80
|
+
* If provided, token usage information associated with the message.
|
|
81
|
+
*/
|
|
82
|
+
Object.defineProperty(this, "usage_metadata", {
|
|
83
|
+
enumerable: true,
|
|
84
|
+
configurable: true,
|
|
85
|
+
writable: true,
|
|
86
|
+
value: void 0
|
|
87
|
+
});
|
|
79
88
|
if (typeof initParams !== "string") {
|
|
80
89
|
this.tool_calls = initParams.tool_calls ?? this.tool_calls;
|
|
81
90
|
this.invalid_tool_calls =
|
|
82
91
|
initParams.invalid_tool_calls ?? this.invalid_tool_calls;
|
|
83
92
|
}
|
|
93
|
+
this.usage_metadata = initParams.usage_metadata;
|
|
84
94
|
}
|
|
85
95
|
static lc_name() {
|
|
86
96
|
return "AIMessage";
|
|
@@ -172,11 +182,21 @@ class AIMessageChunk extends base_js_1.BaseMessageChunk {
|
|
|
172
182
|
writable: true,
|
|
173
183
|
value: []
|
|
174
184
|
});
|
|
185
|
+
/**
|
|
186
|
+
* If provided, token usage information associated with the message.
|
|
187
|
+
*/
|
|
188
|
+
Object.defineProperty(this, "usage_metadata", {
|
|
189
|
+
enumerable: true,
|
|
190
|
+
configurable: true,
|
|
191
|
+
writable: true,
|
|
192
|
+
value: void 0
|
|
193
|
+
});
|
|
175
194
|
this.tool_call_chunks =
|
|
176
|
-
initParams
|
|
177
|
-
this.tool_calls = initParams
|
|
195
|
+
initParams.tool_call_chunks ?? this.tool_call_chunks;
|
|
196
|
+
this.tool_calls = initParams.tool_calls ?? this.tool_calls;
|
|
178
197
|
this.invalid_tool_calls =
|
|
179
|
-
initParams
|
|
198
|
+
initParams.invalid_tool_calls ?? this.invalid_tool_calls;
|
|
199
|
+
this.usage_metadata = initParams.usage_metadata;
|
|
180
200
|
}
|
|
181
201
|
get lc_aliases() {
|
|
182
202
|
// exclude snake case conversion to pascal case
|
|
@@ -207,6 +227,25 @@ class AIMessageChunk extends base_js_1.BaseMessageChunk {
|
|
|
207
227
|
combinedFields.tool_call_chunks = rawToolCalls;
|
|
208
228
|
}
|
|
209
229
|
}
|
|
230
|
+
if (this.usage_metadata !== undefined ||
|
|
231
|
+
chunk.usage_metadata !== undefined) {
|
|
232
|
+
const left = this.usage_metadata ?? {
|
|
233
|
+
input_tokens: 0,
|
|
234
|
+
output_tokens: 0,
|
|
235
|
+
total_tokens: 0,
|
|
236
|
+
};
|
|
237
|
+
const right = chunk.usage_metadata ?? {
|
|
238
|
+
input_tokens: 0,
|
|
239
|
+
output_tokens: 0,
|
|
240
|
+
total_tokens: 0,
|
|
241
|
+
};
|
|
242
|
+
const usage_metadata = {
|
|
243
|
+
input_tokens: left.input_tokens + right.input_tokens,
|
|
244
|
+
output_tokens: left.output_tokens + right.output_tokens,
|
|
245
|
+
total_tokens: left.total_tokens + right.total_tokens,
|
|
246
|
+
};
|
|
247
|
+
combinedFields.usage_metadata = usage_metadata;
|
|
248
|
+
}
|
|
210
249
|
return new AIMessageChunk(combinedFields);
|
|
211
250
|
}
|
|
212
251
|
}
|
package/dist/messages/ai.d.ts
CHANGED
|
@@ -3,6 +3,24 @@ import { InvalidToolCall, ToolCall, ToolCallChunk } from "./tool.js";
|
|
|
3
3
|
export type AIMessageFields = BaseMessageFields & {
|
|
4
4
|
tool_calls?: ToolCall[];
|
|
5
5
|
invalid_tool_calls?: InvalidToolCall[];
|
|
6
|
+
usage_metadata?: UsageMetadata;
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* Usage metadata for a message, such as token counts.
|
|
10
|
+
*/
|
|
11
|
+
export type UsageMetadata = {
|
|
12
|
+
/**
|
|
13
|
+
* The count of input (or prompt) tokens.
|
|
14
|
+
*/
|
|
15
|
+
input_tokens: number;
|
|
16
|
+
/**
|
|
17
|
+
* The count of output (or completion) tokens
|
|
18
|
+
*/
|
|
19
|
+
output_tokens: number;
|
|
20
|
+
/**
|
|
21
|
+
* The total token count
|
|
22
|
+
*/
|
|
23
|
+
total_tokens: number;
|
|
6
24
|
};
|
|
7
25
|
/**
|
|
8
26
|
* Represents an AI message in a conversation.
|
|
@@ -10,6 +28,10 @@ export type AIMessageFields = BaseMessageFields & {
|
|
|
10
28
|
export declare class AIMessage extends BaseMessage {
|
|
11
29
|
tool_calls?: ToolCall[];
|
|
12
30
|
invalid_tool_calls?: InvalidToolCall[];
|
|
31
|
+
/**
|
|
32
|
+
* If provided, token usage information associated with the message.
|
|
33
|
+
*/
|
|
34
|
+
usage_metadata?: UsageMetadata;
|
|
13
35
|
get lc_aliases(): Record<string, string>;
|
|
14
36
|
constructor(fields: string | AIMessageFields,
|
|
15
37
|
/** @deprecated */
|
|
@@ -29,6 +51,10 @@ export declare class AIMessageChunk extends BaseMessageChunk {
|
|
|
29
51
|
tool_calls?: ToolCall[];
|
|
30
52
|
invalid_tool_calls?: InvalidToolCall[];
|
|
31
53
|
tool_call_chunks?: ToolCallChunk[];
|
|
54
|
+
/**
|
|
55
|
+
* If provided, token usage information associated with the message.
|
|
56
|
+
*/
|
|
57
|
+
usage_metadata?: UsageMetadata;
|
|
32
58
|
constructor(fields: string | AIMessageChunkFields);
|
|
33
59
|
get lc_aliases(): Record<string, string>;
|
|
34
60
|
static lc_name(): string;
|
package/dist/messages/ai.js
CHANGED
|
@@ -73,11 +73,21 @@ export class AIMessage extends BaseMessage {
|
|
|
73
73
|
writable: true,
|
|
74
74
|
value: []
|
|
75
75
|
});
|
|
76
|
+
/**
|
|
77
|
+
* If provided, token usage information associated with the message.
|
|
78
|
+
*/
|
|
79
|
+
Object.defineProperty(this, "usage_metadata", {
|
|
80
|
+
enumerable: true,
|
|
81
|
+
configurable: true,
|
|
82
|
+
writable: true,
|
|
83
|
+
value: void 0
|
|
84
|
+
});
|
|
76
85
|
if (typeof initParams !== "string") {
|
|
77
86
|
this.tool_calls = initParams.tool_calls ?? this.tool_calls;
|
|
78
87
|
this.invalid_tool_calls =
|
|
79
88
|
initParams.invalid_tool_calls ?? this.invalid_tool_calls;
|
|
80
89
|
}
|
|
90
|
+
this.usage_metadata = initParams.usage_metadata;
|
|
81
91
|
}
|
|
82
92
|
static lc_name() {
|
|
83
93
|
return "AIMessage";
|
|
@@ -167,11 +177,21 @@ export class AIMessageChunk extends BaseMessageChunk {
|
|
|
167
177
|
writable: true,
|
|
168
178
|
value: []
|
|
169
179
|
});
|
|
180
|
+
/**
|
|
181
|
+
* If provided, token usage information associated with the message.
|
|
182
|
+
*/
|
|
183
|
+
Object.defineProperty(this, "usage_metadata", {
|
|
184
|
+
enumerable: true,
|
|
185
|
+
configurable: true,
|
|
186
|
+
writable: true,
|
|
187
|
+
value: void 0
|
|
188
|
+
});
|
|
170
189
|
this.tool_call_chunks =
|
|
171
|
-
initParams
|
|
172
|
-
this.tool_calls = initParams
|
|
190
|
+
initParams.tool_call_chunks ?? this.tool_call_chunks;
|
|
191
|
+
this.tool_calls = initParams.tool_calls ?? this.tool_calls;
|
|
173
192
|
this.invalid_tool_calls =
|
|
174
|
-
initParams
|
|
193
|
+
initParams.invalid_tool_calls ?? this.invalid_tool_calls;
|
|
194
|
+
this.usage_metadata = initParams.usage_metadata;
|
|
175
195
|
}
|
|
176
196
|
get lc_aliases() {
|
|
177
197
|
// exclude snake case conversion to pascal case
|
|
@@ -202,6 +222,25 @@ export class AIMessageChunk extends BaseMessageChunk {
|
|
|
202
222
|
combinedFields.tool_call_chunks = rawToolCalls;
|
|
203
223
|
}
|
|
204
224
|
}
|
|
225
|
+
if (this.usage_metadata !== undefined ||
|
|
226
|
+
chunk.usage_metadata !== undefined) {
|
|
227
|
+
const left = this.usage_metadata ?? {
|
|
228
|
+
input_tokens: 0,
|
|
229
|
+
output_tokens: 0,
|
|
230
|
+
total_tokens: 0,
|
|
231
|
+
};
|
|
232
|
+
const right = chunk.usage_metadata ?? {
|
|
233
|
+
input_tokens: 0,
|
|
234
|
+
output_tokens: 0,
|
|
235
|
+
total_tokens: 0,
|
|
236
|
+
};
|
|
237
|
+
const usage_metadata = {
|
|
238
|
+
input_tokens: left.input_tokens + right.input_tokens,
|
|
239
|
+
output_tokens: left.output_tokens + right.output_tokens,
|
|
240
|
+
total_tokens: left.total_tokens + right.total_tokens,
|
|
241
|
+
};
|
|
242
|
+
combinedFields.usage_metadata = usage_metadata;
|
|
243
|
+
}
|
|
205
244
|
return new AIMessageChunk(combinedFields);
|
|
206
245
|
}
|
|
207
246
|
}
|
package/dist/runnables/base.cjs
CHANGED
|
@@ -481,7 +481,7 @@ class Runnable extends serializable_js_1.Serializable {
|
|
|
481
481
|
async *_streamEventsV2(input, options, streamOptions) {
|
|
482
482
|
const eventStreamer = new event_stream_js_1.EventStreamCallbackHandler({
|
|
483
483
|
...streamOptions,
|
|
484
|
-
autoClose:
|
|
484
|
+
autoClose: false,
|
|
485
485
|
});
|
|
486
486
|
const config = (0, config_js_1.ensureConfig)(options);
|
|
487
487
|
const runId = config.runId ?? (0, uuid_1.v4)();
|
|
@@ -503,11 +503,16 @@ class Runnable extends serializable_js_1.Serializable {
|
|
|
503
503
|
// add each chunk to the output stream
|
|
504
504
|
const outerThis = this;
|
|
505
505
|
async function consumeRunnableStream() {
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
506
|
+
try {
|
|
507
|
+
const runnableStream = await outerThis.stream(input, config);
|
|
508
|
+
const tappedStream = eventStreamer.tapOutputIterable(runId, runnableStream);
|
|
509
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
510
|
+
for await (const _ of tappedStream) {
|
|
511
|
+
// Just iterate so that the callback handler picks up events
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
finally {
|
|
515
|
+
await eventStreamer.finish();
|
|
511
516
|
}
|
|
512
517
|
}
|
|
513
518
|
const runnableStreamConsumePromise = consumeRunnableStream();
|
package/dist/runnables/base.js
CHANGED
|
@@ -474,7 +474,7 @@ export class Runnable extends Serializable {
|
|
|
474
474
|
async *_streamEventsV2(input, options, streamOptions) {
|
|
475
475
|
const eventStreamer = new EventStreamCallbackHandler({
|
|
476
476
|
...streamOptions,
|
|
477
|
-
autoClose:
|
|
477
|
+
autoClose: false,
|
|
478
478
|
});
|
|
479
479
|
const config = ensureConfig(options);
|
|
480
480
|
const runId = config.runId ?? uuidv4();
|
|
@@ -496,11 +496,16 @@ export class Runnable extends Serializable {
|
|
|
496
496
|
// add each chunk to the output stream
|
|
497
497
|
const outerThis = this;
|
|
498
498
|
async function consumeRunnableStream() {
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
499
|
+
try {
|
|
500
|
+
const runnableStream = await outerThis.stream(input, config);
|
|
501
|
+
const tappedStream = eventStreamer.tapOutputIterable(runId, runnableStream);
|
|
502
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
503
|
+
for await (const _ of tappedStream) {
|
|
504
|
+
// Just iterate so that the callback handler picks up events
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
finally {
|
|
508
|
+
await eventStreamer.finish();
|
|
504
509
|
}
|
|
505
510
|
}
|
|
506
511
|
const runnableStreamConsumePromise = consumeRunnableStream();
|
|
@@ -310,7 +310,8 @@ class RemoteRunnable extends base_js_1.Runnable {
|
|
|
310
310
|
async *_streamIterator(input, options) {
|
|
311
311
|
const [config, kwargs] = this._separateRunnableConfigFromCallOptions(options);
|
|
312
312
|
const callbackManager_ = await (0, config_js_1.getCallbackManagerForConfig)(options);
|
|
313
|
-
const runManager = await callbackManager_?.handleChainStart(this.toJSON(), (0, base_js_1._coerceToDict)(input, "input"),
|
|
313
|
+
const runManager = await callbackManager_?.handleChainStart(this.toJSON(), (0, base_js_1._coerceToDict)(input, "input"), config.runId, undefined, undefined, undefined, config.runName);
|
|
314
|
+
delete config.runId;
|
|
314
315
|
let finalOutput;
|
|
315
316
|
let finalOutputSupported = true;
|
|
316
317
|
try {
|
|
@@ -360,7 +361,8 @@ class RemoteRunnable extends base_js_1.Runnable {
|
|
|
360
361
|
async *streamLog(input, options, streamOptions) {
|
|
361
362
|
const [config, kwargs] = this._separateRunnableConfigFromCallOptions(options);
|
|
362
363
|
const callbackManager_ = await (0, config_js_1.getCallbackManagerForConfig)(options);
|
|
363
|
-
const runManager = await callbackManager_?.handleChainStart(this.toJSON(), (0, base_js_1._coerceToDict)(input, "input"),
|
|
364
|
+
const runManager = await callbackManager_?.handleChainStart(this.toJSON(), (0, base_js_1._coerceToDict)(input, "input"), config.runId, undefined, undefined, undefined, config.runName);
|
|
365
|
+
delete config.runId;
|
|
364
366
|
// The type is in camelCase but the API only accepts snake_case.
|
|
365
367
|
const camelCaseStreamOptions = {
|
|
366
368
|
include_names: streamOptions?.includeNames,
|
|
@@ -411,7 +413,8 @@ class RemoteRunnable extends base_js_1.Runnable {
|
|
|
411
413
|
const generator = async function* () {
|
|
412
414
|
const [config, kwargs] = outerThis._separateRunnableConfigFromCallOptions(options);
|
|
413
415
|
const callbackManager_ = await (0, config_js_1.getCallbackManagerForConfig)(options);
|
|
414
|
-
const runManager = await callbackManager_?.handleChainStart(outerThis.toJSON(), (0, base_js_1._coerceToDict)(input, "input"),
|
|
416
|
+
const runManager = await callbackManager_?.handleChainStart(outerThis.toJSON(), (0, base_js_1._coerceToDict)(input, "input"), config.runId, undefined, undefined, undefined, config.runName);
|
|
417
|
+
delete config.runId;
|
|
415
418
|
// The type is in camelCase but the API only accepts snake_case.
|
|
416
419
|
const camelCaseStreamOptions = {
|
|
417
420
|
include_names: streamOptions?.includeNames,
|
package/dist/runnables/remote.js
CHANGED
|
@@ -307,7 +307,8 @@ export class RemoteRunnable extends Runnable {
|
|
|
307
307
|
async *_streamIterator(input, options) {
|
|
308
308
|
const [config, kwargs] = this._separateRunnableConfigFromCallOptions(options);
|
|
309
309
|
const callbackManager_ = await getCallbackManagerForConfig(options);
|
|
310
|
-
const runManager = await callbackManager_?.handleChainStart(this.toJSON(), _coerceToDict(input, "input"),
|
|
310
|
+
const runManager = await callbackManager_?.handleChainStart(this.toJSON(), _coerceToDict(input, "input"), config.runId, undefined, undefined, undefined, config.runName);
|
|
311
|
+
delete config.runId;
|
|
311
312
|
let finalOutput;
|
|
312
313
|
let finalOutputSupported = true;
|
|
313
314
|
try {
|
|
@@ -357,7 +358,8 @@ export class RemoteRunnable extends Runnable {
|
|
|
357
358
|
async *streamLog(input, options, streamOptions) {
|
|
358
359
|
const [config, kwargs] = this._separateRunnableConfigFromCallOptions(options);
|
|
359
360
|
const callbackManager_ = await getCallbackManagerForConfig(options);
|
|
360
|
-
const runManager = await callbackManager_?.handleChainStart(this.toJSON(), _coerceToDict(input, "input"),
|
|
361
|
+
const runManager = await callbackManager_?.handleChainStart(this.toJSON(), _coerceToDict(input, "input"), config.runId, undefined, undefined, undefined, config.runName);
|
|
362
|
+
delete config.runId;
|
|
361
363
|
// The type is in camelCase but the API only accepts snake_case.
|
|
362
364
|
const camelCaseStreamOptions = {
|
|
363
365
|
include_names: streamOptions?.includeNames,
|
|
@@ -408,7 +410,8 @@ export class RemoteRunnable extends Runnable {
|
|
|
408
410
|
const generator = async function* () {
|
|
409
411
|
const [config, kwargs] = outerThis._separateRunnableConfigFromCallOptions(options);
|
|
410
412
|
const callbackManager_ = await getCallbackManagerForConfig(options);
|
|
411
|
-
const runManager = await callbackManager_?.handleChainStart(outerThis.toJSON(), _coerceToDict(input, "input"),
|
|
413
|
+
const runManager = await callbackManager_?.handleChainStart(outerThis.toJSON(), _coerceToDict(input, "input"), config.runId, undefined, undefined, undefined, config.runName);
|
|
414
|
+
delete config.runId;
|
|
412
415
|
// The type is in camelCase but the API only accepts snake_case.
|
|
413
416
|
const camelCaseStreamOptions = {
|
|
414
417
|
include_names: streamOptions?.includeNames,
|
|
@@ -70,12 +70,6 @@ class EventStreamCallbackHandler extends base_js_1.BaseTracer {
|
|
|
70
70
|
writable: true,
|
|
71
71
|
value: void 0
|
|
72
72
|
});
|
|
73
|
-
Object.defineProperty(this, "rootId", {
|
|
74
|
-
enumerable: true,
|
|
75
|
-
configurable: true,
|
|
76
|
-
writable: true,
|
|
77
|
-
value: void 0
|
|
78
|
-
});
|
|
79
73
|
Object.defineProperty(this, "runInfoMap", {
|
|
80
74
|
enumerable: true,
|
|
81
75
|
configurable: true,
|
|
@@ -164,7 +158,10 @@ class EventStreamCallbackHandler extends base_js_1.BaseTracer {
|
|
|
164
158
|
return;
|
|
165
159
|
}
|
|
166
160
|
const runInfo = this.runInfoMap.get(runId);
|
|
167
|
-
//
|
|
161
|
+
// Run has finished, don't issue any stream events.
|
|
162
|
+
// An example of this is for runnables that use the default
|
|
163
|
+
// implementation of .stream(), which delegates to .invoke()
|
|
164
|
+
// and calls .onChainEnd() before passing it to the iterator.
|
|
168
165
|
if (runInfo === undefined) {
|
|
169
166
|
yield firstChunk.value;
|
|
170
167
|
return;
|
|
@@ -207,7 +204,7 @@ class EventStreamCallbackHandler extends base_js_1.BaseTracer {
|
|
|
207
204
|
finally {
|
|
208
205
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
209
206
|
tappedPromiseResolver();
|
|
210
|
-
// Don't delete from the map to keep track of which runs have been tapped.
|
|
207
|
+
// Don't delete from the promises map to keep track of which runs have been tapped.
|
|
211
208
|
}
|
|
212
209
|
}
|
|
213
210
|
else {
|
|
@@ -492,18 +489,11 @@ class EventStreamCallbackHandler extends base_js_1.BaseTracer {
|
|
|
492
489
|
metadata: runInfo.metadata,
|
|
493
490
|
}, runInfo);
|
|
494
491
|
}
|
|
495
|
-
async
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
async onRunUpdate(run) {
|
|
501
|
-
if (run.id === this.rootId && this.autoClose) {
|
|
502
|
-
const pendingPromises = [...this.tappedPromises.values()];
|
|
503
|
-
void Promise.all(pendingPromises).finally(() => {
|
|
504
|
-
void this.writer.close();
|
|
505
|
-
});
|
|
506
|
-
}
|
|
492
|
+
async finish() {
|
|
493
|
+
const pendingPromises = [...this.tappedPromises.values()];
|
|
494
|
+
void Promise.all(pendingPromises).finally(() => {
|
|
495
|
+
void this.writer.close();
|
|
496
|
+
});
|
|
507
497
|
}
|
|
508
498
|
}
|
|
509
499
|
exports.EventStreamCallbackHandler = EventStreamCallbackHandler;
|
|
@@ -109,7 +109,6 @@ export declare class EventStreamCallbackHandler extends BaseTracer {
|
|
|
109
109
|
protected excludeNames?: string[];
|
|
110
110
|
protected excludeTypes?: string[];
|
|
111
111
|
protected excludeTags?: string[];
|
|
112
|
-
protected rootId?: string;
|
|
113
112
|
private runInfoMap;
|
|
114
113
|
private tappedPromises;
|
|
115
114
|
protected transformStream: TransformStream;
|
|
@@ -134,7 +133,6 @@ export declare class EventStreamCallbackHandler extends BaseTracer {
|
|
|
134
133
|
onToolEnd(run: Run): Promise<void>;
|
|
135
134
|
onRetrieverStart(run: Run): Promise<void>;
|
|
136
135
|
onRetrieverEnd(run: Run): Promise<void>;
|
|
137
|
-
|
|
138
|
-
onRunUpdate(run: Run): Promise<void>;
|
|
136
|
+
finish(): Promise<void>;
|
|
139
137
|
}
|
|
140
138
|
export {};
|
|
@@ -66,12 +66,6 @@ export class EventStreamCallbackHandler extends BaseTracer {
|
|
|
66
66
|
writable: true,
|
|
67
67
|
value: void 0
|
|
68
68
|
});
|
|
69
|
-
Object.defineProperty(this, "rootId", {
|
|
70
|
-
enumerable: true,
|
|
71
|
-
configurable: true,
|
|
72
|
-
writable: true,
|
|
73
|
-
value: void 0
|
|
74
|
-
});
|
|
75
69
|
Object.defineProperty(this, "runInfoMap", {
|
|
76
70
|
enumerable: true,
|
|
77
71
|
configurable: true,
|
|
@@ -160,7 +154,10 @@ export class EventStreamCallbackHandler extends BaseTracer {
|
|
|
160
154
|
return;
|
|
161
155
|
}
|
|
162
156
|
const runInfo = this.runInfoMap.get(runId);
|
|
163
|
-
//
|
|
157
|
+
// Run has finished, don't issue any stream events.
|
|
158
|
+
// An example of this is for runnables that use the default
|
|
159
|
+
// implementation of .stream(), which delegates to .invoke()
|
|
160
|
+
// and calls .onChainEnd() before passing it to the iterator.
|
|
164
161
|
if (runInfo === undefined) {
|
|
165
162
|
yield firstChunk.value;
|
|
166
163
|
return;
|
|
@@ -203,7 +200,7 @@ export class EventStreamCallbackHandler extends BaseTracer {
|
|
|
203
200
|
finally {
|
|
204
201
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
205
202
|
tappedPromiseResolver();
|
|
206
|
-
// Don't delete from the map to keep track of which runs have been tapped.
|
|
203
|
+
// Don't delete from the promises map to keep track of which runs have been tapped.
|
|
207
204
|
}
|
|
208
205
|
}
|
|
209
206
|
else {
|
|
@@ -488,17 +485,10 @@ export class EventStreamCallbackHandler extends BaseTracer {
|
|
|
488
485
|
metadata: runInfo.metadata,
|
|
489
486
|
}, runInfo);
|
|
490
487
|
}
|
|
491
|
-
async
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
async onRunUpdate(run) {
|
|
497
|
-
if (run.id === this.rootId && this.autoClose) {
|
|
498
|
-
const pendingPromises = [...this.tappedPromises.values()];
|
|
499
|
-
void Promise.all(pendingPromises).finally(() => {
|
|
500
|
-
void this.writer.close();
|
|
501
|
-
});
|
|
502
|
-
}
|
|
488
|
+
async finish() {
|
|
489
|
+
const pendingPromises = [...this.tappedPromises.values()];
|
|
490
|
+
void Promise.all(pendingPromises).finally(() => {
|
|
491
|
+
void this.writer.close();
|
|
492
|
+
});
|
|
503
493
|
}
|
|
504
494
|
}
|