langchain 0.0.195 → 0.0.196
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/agents/toolkits/conversational_retrieval/token_buffer_memory.d.ts +1 -1
- package/dist/base_language/count_tokens.cjs +5 -70
- package/dist/base_language/count_tokens.d.ts +1 -10
- package/dist/base_language/count_tokens.js +1 -65
- package/dist/base_language/index.cjs +6 -196
- package/dist/base_language/index.d.ts +1 -111
- package/dist/base_language/index.js +1 -191
- package/dist/cache/base.cjs +15 -37
- package/dist/cache/base.d.ts +1 -20
- package/dist/cache/base.js +1 -33
- package/dist/cache/index.cjs +2 -46
- package/dist/cache/index.d.ts +1 -29
- package/dist/cache/index.js +1 -45
- package/dist/callbacks/base.cjs +3 -139
- package/dist/callbacks/base.d.ts +1 -266
- package/dist/callbacks/base.js +1 -126
- package/dist/callbacks/handlers/console.cjs +14 -221
- package/dist/callbacks/handlers/console.d.ts +1 -117
- package/dist/callbacks/handlers/console.js +1 -217
- package/dist/callbacks/handlers/initialize.cjs +15 -30
- package/dist/callbacks/handlers/initialize.d.ts +1 -16
- package/dist/callbacks/handlers/initialize.js +1 -27
- package/dist/callbacks/handlers/log_stream.cjs +15 -293
- package/dist/callbacks/handlers/log_stream.d.ts +1 -100
- package/dist/callbacks/handlers/log_stream.js +1 -289
- package/dist/callbacks/handlers/run_collector.cjs +15 -48
- package/dist/callbacks/handlers/run_collector.d.ts +1 -26
- package/dist/callbacks/handlers/run_collector.js +1 -46
- package/dist/callbacks/handlers/tracer.cjs +15 -375
- package/dist/callbacks/handlers/tracer.d.ts +1 -70
- package/dist/callbacks/handlers/tracer.js +1 -373
- package/dist/callbacks/handlers/tracer_langchain.cjs +15 -104
- package/dist/callbacks/handlers/tracer_langchain.d.ts +1 -41
- package/dist/callbacks/handlers/tracer_langchain.js +1 -102
- package/dist/callbacks/handlers/tracer_langchain_v1.cjs +15 -197
- package/dist/callbacks/handlers/tracer_langchain_v1.d.ts +1 -57
- package/dist/callbacks/handlers/tracer_langchain_v1.js +1 -195
- package/dist/callbacks/manager.cjs +15 -676
- package/dist/callbacks/manager.d.ts +1 -180
- package/dist/callbacks/manager.js +1 -666
- package/dist/callbacks/promises.cjs +14 -42
- package/dist/callbacks/promises.d.ts +1 -11
- package/dist/callbacks/promises.js +1 -37
- package/dist/chains/graph_qa/prompts.d.ts +1 -1
- package/dist/chains/openai_functions/structured_output.cjs +2 -2
- package/dist/chains/openai_functions/structured_output.d.ts +1 -1
- package/dist/chains/openai_functions/structured_output.js +1 -1
- package/dist/chat_models/baiduwenxin.d.ts +1 -1
- package/dist/chat_models/base.cjs +15 -296
- package/dist/chat_models/base.d.ts +1 -122
- package/dist/chat_models/base.js +1 -292
- package/dist/chat_models/bedrock/web.d.ts +1 -1
- package/dist/chat_models/fireworks.d.ts +1 -1
- package/dist/document.cjs +2 -24
- package/dist/document.d.ts +1 -12
- package/dist/document.js +1 -23
- package/dist/document_loaders/web/azure_blob_storage_file.d.ts +1 -1
- package/dist/document_loaders/web/s3.d.ts +1 -1
- package/dist/embeddings/base.cjs +15 -22
- package/dist/embeddings/base.d.ts +1 -33
- package/dist/embeddings/base.js +1 -20
- package/dist/embeddings/cache_backed.cjs +2 -2
- package/dist/embeddings/cache_backed.js +1 -1
- package/dist/evaluation/agents/trajectory.d.ts +1 -1
- package/dist/evaluation/criteria/prompt.d.ts +2 -2
- package/dist/evaluation/qa/prompt.d.ts +2 -2
- package/dist/experimental/hubs/makersuite/googlemakersuitehub.d.ts +1 -1
- package/dist/experimental/plan_and_execute/prompt.d.ts +1 -1
- package/dist/llms/base.cjs +15 -278
- package/dist/llms/base.d.ts +1 -115
- package/dist/llms/base.js +1 -275
- package/dist/llms/bedrock/web.d.ts +1 -1
- package/dist/llms/fireworks.d.ts +1 -1
- package/dist/load/import_map.cjs +2 -1
- package/dist/load/import_map.d.ts +1 -0
- package/dist/load/import_map.js +1 -0
- package/dist/load/index.cjs +7 -148
- package/dist/load/index.js +7 -148
- package/dist/load/map_keys.cjs +0 -24
- package/dist/load/map_keys.d.ts +0 -6
- package/dist/load/map_keys.js +1 -17
- package/dist/load/serializable.cjs +15 -178
- package/dist/load/serializable.d.ts +1 -66
- package/dist/load/serializable.js +1 -175
- package/dist/memory/base.cjs +17 -92
- package/dist/memory/base.d.ts +2 -68
- package/dist/memory/base.js +2 -87
- package/dist/output_parsers/openai_functions.cjs +2 -2
- package/dist/output_parsers/openai_functions.d.ts +1 -1
- package/dist/output_parsers/openai_functions.js +1 -1
- package/dist/output_parsers/regex.d.ts +1 -1
- package/dist/output_parsers/structured.d.ts +1 -1
- package/dist/prompts/base.cjs +8 -183
- package/dist/prompts/base.d.ts +3 -132
- package/dist/prompts/base.js +3 -178
- package/dist/prompts/chat.cjs +15 -477
- package/dist/prompts/chat.d.ts +1 -219
- package/dist/prompts/chat.js +1 -466
- package/dist/prompts/few_shot.cjs +15 -353
- package/dist/prompts/few_shot.d.ts +1 -192
- package/dist/prompts/few_shot.js +1 -350
- package/dist/prompts/index.cjs +3 -2
- package/dist/prompts/index.d.ts +2 -1
- package/dist/prompts/index.js +2 -1
- package/dist/prompts/pipeline.cjs +15 -142
- package/dist/prompts/pipeline.d.ts +1 -98
- package/dist/prompts/pipeline.js +1 -140
- package/dist/prompts/prompt.cjs +15 -146
- package/dist/prompts/prompt.d.ts +1 -92
- package/dist/prompts/prompt.js +1 -144
- package/dist/prompts/selectors/LengthBasedExampleSelector.cjs +15 -148
- package/dist/prompts/selectors/LengthBasedExampleSelector.d.ts +1 -89
- package/dist/prompts/selectors/LengthBasedExampleSelector.js +1 -146
- package/dist/prompts/selectors/SemanticSimilarityExampleSelector.cjs +15 -137
- package/dist/prompts/selectors/SemanticSimilarityExampleSelector.d.ts +1 -91
- package/dist/prompts/selectors/SemanticSimilarityExampleSelector.js +1 -135
- package/dist/prompts/selectors/conditional.cjs +15 -74
- package/dist/prompts/selectors/conditional.d.ts +1 -63
- package/dist/prompts/selectors/conditional.js +1 -69
- package/dist/prompts/serde.cjs +15 -0
- package/dist/prompts/serde.d.ts +1 -43
- package/dist/prompts/serde.js +1 -1
- package/dist/prompts/template.cjs +14 -88
- package/dist/prompts/template.d.ts +1 -36
- package/dist/prompts/template.js +1 -83
- package/dist/{util/@cfworker/json-schema → runnables}/index.cjs +1 -1
- package/dist/runnables/index.d.ts +1 -0
- package/dist/runnables/index.js +1 -0
- package/dist/schema/document.cjs +3 -34
- package/dist/schema/document.d.ts +2 -29
- package/dist/schema/document.js +2 -32
- package/dist/schema/index.cjs +37 -612
- package/dist/schema/index.d.ts +11 -311
- package/dist/schema/index.js +8 -583
- package/dist/schema/output_parser.cjs +15 -309
- package/dist/schema/output_parser.d.ts +1 -173
- package/dist/schema/output_parser.js +1 -301
- package/dist/schema/retriever.cjs +15 -77
- package/dist/schema/retriever.d.ts +1 -43
- package/dist/schema/retriever.js +1 -75
- package/dist/schema/runnable/base.cjs +10 -1072
- package/dist/schema/runnable/base.d.ts +1 -356
- package/dist/schema/runnable/base.js +1 -1060
- package/dist/schema/runnable/branch.cjs +2 -131
- package/dist/schema/runnable/branch.d.ts +1 -94
- package/dist/schema/runnable/branch.js +1 -130
- package/dist/schema/runnable/config.cjs +0 -6
- package/dist/schema/runnable/config.d.ts +1 -3
- package/dist/schema/runnable/config.js +1 -4
- package/dist/schema/runnable/index.cjs +15 -16
- package/dist/schema/runnable/index.d.ts +1 -5
- package/dist/schema/runnable/index.js +1 -4
- package/dist/schema/runnable/passthrough.cjs +3 -113
- package/dist/schema/runnable/passthrough.d.ts +1 -72
- package/dist/schema/runnable/passthrough.js +1 -111
- package/dist/schema/runnable/router.cjs +2 -71
- package/dist/schema/runnable/router.d.ts +1 -29
- package/dist/schema/runnable/router.js +1 -70
- package/dist/schema/storage.cjs +15 -8
- package/dist/schema/storage.d.ts +1 -57
- package/dist/schema/storage.js +1 -6
- package/dist/tools/bingserpapi.d.ts +1 -1
- package/dist/tools/searchapi.d.ts +1 -1
- package/dist/tools/serpapi.d.ts +1 -1
- package/dist/tools/serper.d.ts +1 -1
- package/dist/util/async_caller.cjs +14 -128
- package/dist/util/async_caller.d.ts +1 -45
- package/dist/util/async_caller.js +1 -124
- package/package.json +11 -5
- package/runnables.cjs +1 -0
- package/runnables.d.ts +1 -0
- package/runnables.js +1 -0
- package/dist/util/@cfworker/json-schema/index.d.ts +0 -1
- package/dist/util/@cfworker/json-schema/index.js +0 -1
- package/dist/util/@cfworker/json-schema/src/deep-compare-strict.cjs +0 -43
- package/dist/util/@cfworker/json-schema/src/deep-compare-strict.d.ts +0 -1
- package/dist/util/@cfworker/json-schema/src/deep-compare-strict.js +0 -39
- package/dist/util/@cfworker/json-schema/src/dereference.cjs +0 -169
- package/dist/util/@cfworker/json-schema/src/dereference.d.ts +0 -12
- package/dist/util/@cfworker/json-schema/src/dereference.js +0 -165
- package/dist/util/@cfworker/json-schema/src/format.cjs +0 -139
- package/dist/util/@cfworker/json-schema/src/format.d.ts +0 -2
- package/dist/util/@cfworker/json-schema/src/format.js +0 -136
- package/dist/util/@cfworker/json-schema/src/index.cjs +0 -24
- package/dist/util/@cfworker/json-schema/src/index.d.ts +0 -8
- package/dist/util/@cfworker/json-schema/src/index.js +0 -8
- package/dist/util/@cfworker/json-schema/src/pointer.cjs +0 -11
- package/dist/util/@cfworker/json-schema/src/pointer.d.ts +0 -2
- package/dist/util/@cfworker/json-schema/src/pointer.js +0 -6
- package/dist/util/@cfworker/json-schema/src/types.cjs +0 -2
- package/dist/util/@cfworker/json-schema/src/types.d.ts +0 -72
- package/dist/util/@cfworker/json-schema/src/types.js +0 -1
- package/dist/util/@cfworker/json-schema/src/ucs2-length.cjs +0 -28
- package/dist/util/@cfworker/json-schema/src/ucs2-length.d.ts +0 -6
- package/dist/util/@cfworker/json-schema/src/ucs2-length.js +0 -24
- package/dist/util/@cfworker/json-schema/src/validate.cjs +0 -808
- package/dist/util/@cfworker/json-schema/src/validate.d.ts +0 -3
- package/dist/util/@cfworker/json-schema/src/validate.js +0 -804
- package/dist/util/@cfworker/json-schema/src/validator.cjs +0 -44
- package/dist/util/@cfworker/json-schema/src/validator.d.ts +0 -10
- package/dist/util/@cfworker/json-schema/src/validator.js +0 -40
- package/dist/util/fast-json-patch/index.cjs +0 -49
- package/dist/util/fast-json-patch/index.d.ts +0 -22
- package/dist/util/fast-json-patch/index.js +0 -16
- package/dist/util/fast-json-patch/src/core.cjs +0 -469
- package/dist/util/fast-json-patch/src/core.d.ts +0 -111
- package/dist/util/fast-json-patch/src/core.js +0 -459
- package/dist/util/fast-json-patch/src/duplex.cjs +0 -237
- package/dist/util/fast-json-patch/src/duplex.d.ts +0 -23
- package/dist/util/fast-json-patch/src/duplex.js +0 -230
- package/dist/util/fast-json-patch/src/helpers.cjs +0 -194
- package/dist/util/fast-json-patch/src/helpers.d.ts +0 -36
- package/dist/util/fast-json-patch/src/helpers.js +0 -181
- package/dist/util/js-sha1/hash.cjs +0 -358
- package/dist/util/js-sha1/hash.d.ts +0 -1
- package/dist/util/js-sha1/hash.js +0 -355
|
@@ -1,32 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
Object.
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
* Function that returns an instance of `LangChainTracerV1`. If a session
|
|
8
|
-
* is provided, it loads that session into the tracer; otherwise, it loads
|
|
9
|
-
* a default session.
|
|
10
|
-
* @param session Optional session to load into the tracer.
|
|
11
|
-
* @returns An instance of `LangChainTracerV1`.
|
|
12
|
-
*/
|
|
13
|
-
async function getTracingCallbackHandler(session) {
|
|
14
|
-
const tracer = new tracer_langchain_v1_js_1.LangChainTracerV1();
|
|
15
|
-
if (session) {
|
|
16
|
-
await tracer.loadSession(session);
|
|
17
|
-
}
|
|
18
|
-
else {
|
|
19
|
-
await tracer.loadDefaultSession();
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
20
7
|
}
|
|
21
|
-
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
}
|
|
32
|
-
exports.getTracingV2CallbackHandler = getTracingV2CallbackHandler;
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("langchain-core/callbacks/tracers/initialize"), exports);
|
|
@@ -1,16 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { LangChainTracerV1 } from "./tracer_langchain_v1.js";
|
|
3
|
-
/**
|
|
4
|
-
* Function that returns an instance of `LangChainTracerV1`. If a session
|
|
5
|
-
* is provided, it loads that session into the tracer; otherwise, it loads
|
|
6
|
-
* a default session.
|
|
7
|
-
* @param session Optional session to load into the tracer.
|
|
8
|
-
* @returns An instance of `LangChainTracerV1`.
|
|
9
|
-
*/
|
|
10
|
-
export declare function getTracingCallbackHandler(session?: string): Promise<LangChainTracerV1>;
|
|
11
|
-
/**
|
|
12
|
-
* Function that returns an instance of `LangChainTracer`. It does not
|
|
13
|
-
* load any session data.
|
|
14
|
-
* @returns An instance of `LangChainTracer`.
|
|
15
|
-
*/
|
|
16
|
-
export declare function getTracingV2CallbackHandler(): Promise<LangChainTracer>;
|
|
1
|
+
export * from "langchain-core/callbacks/tracers/initialize";
|
|
@@ -1,27 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { LangChainTracerV1 } from "./tracer_langchain_v1.js";
|
|
3
|
-
/**
|
|
4
|
-
* Function that returns an instance of `LangChainTracerV1`. If a session
|
|
5
|
-
* is provided, it loads that session into the tracer; otherwise, it loads
|
|
6
|
-
* a default session.
|
|
7
|
-
* @param session Optional session to load into the tracer.
|
|
8
|
-
* @returns An instance of `LangChainTracerV1`.
|
|
9
|
-
*/
|
|
10
|
-
export async function getTracingCallbackHandler(session) {
|
|
11
|
-
const tracer = new LangChainTracerV1();
|
|
12
|
-
if (session) {
|
|
13
|
-
await tracer.loadSession(session);
|
|
14
|
-
}
|
|
15
|
-
else {
|
|
16
|
-
await tracer.loadDefaultSession();
|
|
17
|
-
}
|
|
18
|
-
return tracer;
|
|
19
|
-
}
|
|
20
|
-
/**
|
|
21
|
-
* Function that returns an instance of `LangChainTracer`. It does not
|
|
22
|
-
* load any session data.
|
|
23
|
-
* @returns An instance of `LangChainTracer`.
|
|
24
|
-
*/
|
|
25
|
-
export async function getTracingV2CallbackHandler() {
|
|
26
|
-
return new LangChainTracer();
|
|
27
|
-
}
|
|
1
|
+
export * from "langchain-core/callbacks/tracers/initialize";
|
|
@@ -1,295 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
2
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
|
|
4
|
-
const index_js_1 = require("../../util/fast-json-patch/index.cjs");
|
|
5
|
-
const tracer_js_1 = require("./tracer.cjs");
|
|
6
|
-
const stream_js_1 = require("../../util/stream.cjs");
|
|
7
|
-
/**
|
|
8
|
-
* List of jsonpatch JSONPatchOperations, which describe how to create the run state
|
|
9
|
-
* from an empty dict. This is the minimal representation of the log, designed to
|
|
10
|
-
* be serialized as JSON and sent over the wire to reconstruct the log on the other
|
|
11
|
-
* side. Reconstruction of the state can be done with any jsonpatch-compliant library,
|
|
12
|
-
* see https://jsonpatch.com for more information.
|
|
13
|
-
*/
|
|
14
|
-
class RunLogPatch {
|
|
15
|
-
constructor(fields) {
|
|
16
|
-
Object.defineProperty(this, "ops", {
|
|
17
|
-
enumerable: true,
|
|
18
|
-
configurable: true,
|
|
19
|
-
writable: true,
|
|
20
|
-
value: void 0
|
|
21
|
-
});
|
|
22
|
-
this.ops = fields.ops;
|
|
23
|
-
}
|
|
24
|
-
concat(other) {
|
|
25
|
-
const ops = this.ops.concat(other.ops);
|
|
26
|
-
const states = (0, index_js_1.applyPatch)({}, ops);
|
|
27
|
-
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
|
28
|
-
return new RunLog({
|
|
29
|
-
ops,
|
|
30
|
-
state: states[states.length - 1].newDocument,
|
|
31
|
-
});
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
exports.RunLogPatch = RunLogPatch;
|
|
35
|
-
class RunLog extends RunLogPatch {
|
|
36
|
-
constructor(fields) {
|
|
37
|
-
super(fields);
|
|
38
|
-
Object.defineProperty(this, "state", {
|
|
39
|
-
enumerable: true,
|
|
40
|
-
configurable: true,
|
|
41
|
-
writable: true,
|
|
42
|
-
value: void 0
|
|
43
|
-
});
|
|
44
|
-
this.state = fields.state;
|
|
45
|
-
}
|
|
46
|
-
concat(other) {
|
|
47
|
-
const ops = this.ops.concat(other.ops);
|
|
48
|
-
const states = (0, index_js_1.applyPatch)(this.state, other.ops);
|
|
49
|
-
return new RunLog({ ops, state: states[states.length - 1].newDocument });
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
exports.RunLog = RunLog;
|
|
53
|
-
/**
|
|
54
|
-
* Class that extends the `BaseTracer` class from the
|
|
55
|
-
* `langchain.callbacks.tracers.base` module. It represents a callback
|
|
56
|
-
* handler that logs the execution of runs and emits `RunLog` instances to a
|
|
57
|
-
* `RunLogStream`.
|
|
58
|
-
*/
|
|
59
|
-
class LogStreamCallbackHandler extends tracer_js_1.BaseTracer {
|
|
60
|
-
constructor(fields) {
|
|
61
|
-
super(fields);
|
|
62
|
-
Object.defineProperty(this, "autoClose", {
|
|
63
|
-
enumerable: true,
|
|
64
|
-
configurable: true,
|
|
65
|
-
writable: true,
|
|
66
|
-
value: true
|
|
67
|
-
});
|
|
68
|
-
Object.defineProperty(this, "includeNames", {
|
|
69
|
-
enumerable: true,
|
|
70
|
-
configurable: true,
|
|
71
|
-
writable: true,
|
|
72
|
-
value: void 0
|
|
73
|
-
});
|
|
74
|
-
Object.defineProperty(this, "includeTypes", {
|
|
75
|
-
enumerable: true,
|
|
76
|
-
configurable: true,
|
|
77
|
-
writable: true,
|
|
78
|
-
value: void 0
|
|
79
|
-
});
|
|
80
|
-
Object.defineProperty(this, "includeTags", {
|
|
81
|
-
enumerable: true,
|
|
82
|
-
configurable: true,
|
|
83
|
-
writable: true,
|
|
84
|
-
value: void 0
|
|
85
|
-
});
|
|
86
|
-
Object.defineProperty(this, "excludeNames", {
|
|
87
|
-
enumerable: true,
|
|
88
|
-
configurable: true,
|
|
89
|
-
writable: true,
|
|
90
|
-
value: void 0
|
|
91
|
-
});
|
|
92
|
-
Object.defineProperty(this, "excludeTypes", {
|
|
93
|
-
enumerable: true,
|
|
94
|
-
configurable: true,
|
|
95
|
-
writable: true,
|
|
96
|
-
value: void 0
|
|
97
|
-
});
|
|
98
|
-
Object.defineProperty(this, "excludeTags", {
|
|
99
|
-
enumerable: true,
|
|
100
|
-
configurable: true,
|
|
101
|
-
writable: true,
|
|
102
|
-
value: void 0
|
|
103
|
-
});
|
|
104
|
-
Object.defineProperty(this, "keyMapByRunId", {
|
|
105
|
-
enumerable: true,
|
|
106
|
-
configurable: true,
|
|
107
|
-
writable: true,
|
|
108
|
-
value: {}
|
|
109
|
-
});
|
|
110
|
-
Object.defineProperty(this, "counterMapByRunName", {
|
|
111
|
-
enumerable: true,
|
|
112
|
-
configurable: true,
|
|
113
|
-
writable: true,
|
|
114
|
-
value: {}
|
|
115
|
-
});
|
|
116
|
-
Object.defineProperty(this, "transformStream", {
|
|
117
|
-
enumerable: true,
|
|
118
|
-
configurable: true,
|
|
119
|
-
writable: true,
|
|
120
|
-
value: void 0
|
|
121
|
-
});
|
|
122
|
-
Object.defineProperty(this, "writer", {
|
|
123
|
-
enumerable: true,
|
|
124
|
-
configurable: true,
|
|
125
|
-
writable: true,
|
|
126
|
-
value: void 0
|
|
127
|
-
});
|
|
128
|
-
Object.defineProperty(this, "receiveStream", {
|
|
129
|
-
enumerable: true,
|
|
130
|
-
configurable: true,
|
|
131
|
-
writable: true,
|
|
132
|
-
value: void 0
|
|
133
|
-
});
|
|
134
|
-
Object.defineProperty(this, "name", {
|
|
135
|
-
enumerable: true,
|
|
136
|
-
configurable: true,
|
|
137
|
-
writable: true,
|
|
138
|
-
value: "log_stream_tracer"
|
|
139
|
-
});
|
|
140
|
-
this.autoClose = fields?.autoClose ?? true;
|
|
141
|
-
this.includeNames = fields?.includeNames;
|
|
142
|
-
this.includeTypes = fields?.includeTypes;
|
|
143
|
-
this.includeTags = fields?.includeTags;
|
|
144
|
-
this.excludeNames = fields?.excludeNames;
|
|
145
|
-
this.excludeTypes = fields?.excludeTypes;
|
|
146
|
-
this.excludeTags = fields?.excludeTags;
|
|
147
|
-
this.transformStream = new TransformStream();
|
|
148
|
-
this.writer = this.transformStream.writable.getWriter();
|
|
149
|
-
this.receiveStream = stream_js_1.IterableReadableStream.fromReadableStream(this.transformStream.readable);
|
|
150
|
-
}
|
|
151
|
-
[Symbol.asyncIterator]() {
|
|
152
|
-
return this.receiveStream;
|
|
153
|
-
}
|
|
154
|
-
async persistRun(_run) {
|
|
155
|
-
// This is a legacy method only called once for an entire run tree
|
|
156
|
-
// and is therefore not useful here
|
|
157
|
-
}
|
|
158
|
-
_includeRun(run) {
|
|
159
|
-
if (run.parent_run_id === undefined) {
|
|
160
|
-
return false;
|
|
161
|
-
}
|
|
162
|
-
const runTags = run.tags ?? [];
|
|
163
|
-
let include = this.includeNames === undefined &&
|
|
164
|
-
this.includeTags === undefined &&
|
|
165
|
-
this.includeTypes === undefined;
|
|
166
|
-
if (this.includeNames !== undefined) {
|
|
167
|
-
include = include || this.includeNames.includes(run.name);
|
|
168
|
-
}
|
|
169
|
-
if (this.includeTypes !== undefined) {
|
|
170
|
-
include = include || this.includeTypes.includes(run.run_type);
|
|
171
|
-
}
|
|
172
|
-
if (this.includeTags !== undefined) {
|
|
173
|
-
include =
|
|
174
|
-
include ||
|
|
175
|
-
runTags.find((tag) => this.includeTags?.includes(tag)) !== undefined;
|
|
176
|
-
}
|
|
177
|
-
if (this.excludeNames !== undefined) {
|
|
178
|
-
include = include && !this.excludeNames.includes(run.name);
|
|
179
|
-
}
|
|
180
|
-
if (this.excludeTypes !== undefined) {
|
|
181
|
-
include = include && !this.excludeTypes.includes(run.run_type);
|
|
182
|
-
}
|
|
183
|
-
if (this.excludeTags !== undefined) {
|
|
184
|
-
include =
|
|
185
|
-
include && runTags.every((tag) => !this.excludeTags?.includes(tag));
|
|
186
|
-
}
|
|
187
|
-
return include;
|
|
188
|
-
}
|
|
189
|
-
async onRunCreate(run) {
|
|
190
|
-
if (run.parent_run_id === undefined) {
|
|
191
|
-
await this.writer.write(new RunLogPatch({
|
|
192
|
-
ops: [
|
|
193
|
-
{
|
|
194
|
-
op: "replace",
|
|
195
|
-
path: "",
|
|
196
|
-
value: {
|
|
197
|
-
id: run.id,
|
|
198
|
-
streamed_output: [],
|
|
199
|
-
final_output: undefined,
|
|
200
|
-
logs: {},
|
|
201
|
-
},
|
|
202
|
-
},
|
|
203
|
-
],
|
|
204
|
-
}));
|
|
205
|
-
}
|
|
206
|
-
if (!this._includeRun(run)) {
|
|
207
|
-
return;
|
|
208
|
-
}
|
|
209
|
-
if (this.counterMapByRunName[run.name] === undefined) {
|
|
210
|
-
this.counterMapByRunName[run.name] = 0;
|
|
211
|
-
}
|
|
212
|
-
this.counterMapByRunName[run.name] += 1;
|
|
213
|
-
const count = this.counterMapByRunName[run.name];
|
|
214
|
-
this.keyMapByRunId[run.id] =
|
|
215
|
-
count === 1 ? run.name : `${run.name}:${count}`;
|
|
216
|
-
const logEntry = {
|
|
217
|
-
id: run.id,
|
|
218
|
-
name: run.name,
|
|
219
|
-
type: run.run_type,
|
|
220
|
-
tags: run.tags ?? [],
|
|
221
|
-
metadata: run.extra?.metadata ?? {},
|
|
222
|
-
start_time: new Date(run.start_time).toISOString(),
|
|
223
|
-
streamed_output_str: [],
|
|
224
|
-
final_output: undefined,
|
|
225
|
-
end_time: undefined,
|
|
226
|
-
};
|
|
227
|
-
await this.writer.write(new RunLogPatch({
|
|
228
|
-
ops: [
|
|
229
|
-
{
|
|
230
|
-
op: "add",
|
|
231
|
-
path: `/logs/${this.keyMapByRunId[run.id]}`,
|
|
232
|
-
value: logEntry,
|
|
233
|
-
},
|
|
234
|
-
],
|
|
235
|
-
}));
|
|
236
|
-
}
|
|
237
|
-
async onRunUpdate(run) {
|
|
238
|
-
try {
|
|
239
|
-
const runName = this.keyMapByRunId[run.id];
|
|
240
|
-
if (runName === undefined) {
|
|
241
|
-
return;
|
|
242
|
-
}
|
|
243
|
-
const ops = [
|
|
244
|
-
{
|
|
245
|
-
op: "add",
|
|
246
|
-
path: `/logs/${runName}/final_output`,
|
|
247
|
-
value: run.outputs,
|
|
248
|
-
},
|
|
249
|
-
];
|
|
250
|
-
if (run.end_time !== undefined) {
|
|
251
|
-
ops.push({
|
|
252
|
-
op: "add",
|
|
253
|
-
path: `/logs/${runName}/end_time`,
|
|
254
|
-
value: new Date(run.end_time).toISOString(),
|
|
255
|
-
});
|
|
256
|
-
}
|
|
257
|
-
const patch = new RunLogPatch({ ops });
|
|
258
|
-
await this.writer.write(patch);
|
|
259
|
-
}
|
|
260
|
-
finally {
|
|
261
|
-
if (run.parent_run_id === undefined) {
|
|
262
|
-
const patch = new RunLogPatch({
|
|
263
|
-
ops: [
|
|
264
|
-
{
|
|
265
|
-
op: "replace",
|
|
266
|
-
path: "/final_output",
|
|
267
|
-
value: run.outputs,
|
|
268
|
-
},
|
|
269
|
-
],
|
|
270
|
-
});
|
|
271
|
-
await this.writer.write(patch);
|
|
272
|
-
if (this.autoClose) {
|
|
273
|
-
await this.writer.close();
|
|
274
|
-
}
|
|
275
|
-
}
|
|
276
|
-
}
|
|
277
|
-
}
|
|
278
|
-
async onLLMNewToken(run, token) {
|
|
279
|
-
const runName = this.keyMapByRunId[run.id];
|
|
280
|
-
if (runName === undefined) {
|
|
281
|
-
return;
|
|
282
|
-
}
|
|
283
|
-
const patch = new RunLogPatch({
|
|
284
|
-
ops: [
|
|
285
|
-
{
|
|
286
|
-
op: "add",
|
|
287
|
-
path: `/logs/${runName}/streamed_output_str/-`,
|
|
288
|
-
value: token,
|
|
289
|
-
},
|
|
290
|
-
],
|
|
291
|
-
});
|
|
292
|
-
await this.writer.write(patch);
|
|
293
|
-
}
|
|
294
|
-
}
|
|
295
|
-
exports.LogStreamCallbackHandler = LogStreamCallbackHandler;
|
|
17
|
+
__exportStar(require("langchain-core/callbacks/tracers/log_stream"), exports);
|
|
@@ -1,100 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { BaseTracer, type Run } from "./tracer.js";
|
|
3
|
-
import { BaseCallbackHandlerInput } from "../base.js";
|
|
4
|
-
import { IterableReadableStream } from "../../util/stream.js";
|
|
5
|
-
/**
|
|
6
|
-
* Interface that represents the structure of a log entry in the
|
|
7
|
-
* `LogStreamCallbackHandler`.
|
|
8
|
-
*/
|
|
9
|
-
export type LogEntry = {
|
|
10
|
-
/** ID of the sub-run. */
|
|
11
|
-
id: string;
|
|
12
|
-
/** Name of the object being run. */
|
|
13
|
-
name: string;
|
|
14
|
-
/** Type of the object being run, eg. prompt, chain, llm, etc. */
|
|
15
|
-
type: string;
|
|
16
|
-
/** List of tags for the run. */
|
|
17
|
-
tags: string[];
|
|
18
|
-
/** Key-value pairs of metadata for the run. */
|
|
19
|
-
metadata: Record<string, any>;
|
|
20
|
-
/** ISO-8601 timestamp of when the run started. */
|
|
21
|
-
start_time: string;
|
|
22
|
-
/** List of LLM tokens streamed by this run, if applicable. */
|
|
23
|
-
streamed_output_str: string[];
|
|
24
|
-
/** Final output of this run. Only available after the run has finished successfully. */
|
|
25
|
-
final_output?: any;
|
|
26
|
-
/** ISO-8601 timestamp of when the run ended. Only available after the run has finished. */
|
|
27
|
-
end_time?: string;
|
|
28
|
-
};
|
|
29
|
-
export type RunState = {
|
|
30
|
-
/** ID of the sub-run. */
|
|
31
|
-
id: string;
|
|
32
|
-
/** List of output chunks streamed by Runnable.stream() */
|
|
33
|
-
streamed_output: any[];
|
|
34
|
-
/** Final output of the run, usually the result of aggregating streamed_output. Only available after the run has finished successfully. */
|
|
35
|
-
final_output?: any;
|
|
36
|
-
/**
|
|
37
|
-
* List of sub-runs contained in this run, if any, in the order they were started.
|
|
38
|
-
* If filters were supplied, this list will contain only the runs that matched the filters.
|
|
39
|
-
*/
|
|
40
|
-
logs: Record<string, LogEntry>;
|
|
41
|
-
};
|
|
42
|
-
/**
|
|
43
|
-
* List of jsonpatch JSONPatchOperations, which describe how to create the run state
|
|
44
|
-
* from an empty dict. This is the minimal representation of the log, designed to
|
|
45
|
-
* be serialized as JSON and sent over the wire to reconstruct the log on the other
|
|
46
|
-
* side. Reconstruction of the state can be done with any jsonpatch-compliant library,
|
|
47
|
-
* see https://jsonpatch.com for more information.
|
|
48
|
-
*/
|
|
49
|
-
export declare class RunLogPatch {
|
|
50
|
-
ops: JSONPatchOperation[];
|
|
51
|
-
constructor(fields: {
|
|
52
|
-
ops: JSONPatchOperation[];
|
|
53
|
-
});
|
|
54
|
-
concat(other: RunLogPatch): RunLog;
|
|
55
|
-
}
|
|
56
|
-
export declare class RunLog extends RunLogPatch {
|
|
57
|
-
state: RunState;
|
|
58
|
-
constructor(fields: {
|
|
59
|
-
ops: JSONPatchOperation[];
|
|
60
|
-
state: RunState;
|
|
61
|
-
});
|
|
62
|
-
concat(other: RunLogPatch): RunLog;
|
|
63
|
-
}
|
|
64
|
-
export interface LogStreamCallbackHandlerInput extends BaseCallbackHandlerInput {
|
|
65
|
-
autoClose?: boolean;
|
|
66
|
-
includeNames?: string[];
|
|
67
|
-
includeTypes?: string[];
|
|
68
|
-
includeTags?: string[];
|
|
69
|
-
excludeNames?: string[];
|
|
70
|
-
excludeTypes?: string[];
|
|
71
|
-
excludeTags?: string[];
|
|
72
|
-
}
|
|
73
|
-
/**
|
|
74
|
-
* Class that extends the `BaseTracer` class from the
|
|
75
|
-
* `langchain.callbacks.tracers.base` module. It represents a callback
|
|
76
|
-
* handler that logs the execution of runs and emits `RunLog` instances to a
|
|
77
|
-
* `RunLogStream`.
|
|
78
|
-
*/
|
|
79
|
-
export declare class LogStreamCallbackHandler extends BaseTracer {
|
|
80
|
-
protected autoClose: boolean;
|
|
81
|
-
protected includeNames?: string[];
|
|
82
|
-
protected includeTypes?: string[];
|
|
83
|
-
protected includeTags?: string[];
|
|
84
|
-
protected excludeNames?: string[];
|
|
85
|
-
protected excludeTypes?: string[];
|
|
86
|
-
protected excludeTags?: string[];
|
|
87
|
-
private keyMapByRunId;
|
|
88
|
-
private counterMapByRunName;
|
|
89
|
-
protected transformStream: TransformStream;
|
|
90
|
-
writer: WritableStreamDefaultWriter;
|
|
91
|
-
receiveStream: IterableReadableStream<RunLogPatch>;
|
|
92
|
-
name: string;
|
|
93
|
-
constructor(fields?: LogStreamCallbackHandlerInput);
|
|
94
|
-
[Symbol.asyncIterator](): IterableReadableStream<RunLogPatch>;
|
|
95
|
-
protected persistRun(_run: Run): Promise<void>;
|
|
96
|
-
_includeRun(run: Run): boolean;
|
|
97
|
-
onRunCreate(run: Run): Promise<void>;
|
|
98
|
-
onRunUpdate(run: Run): Promise<void>;
|
|
99
|
-
onLLMNewToken(run: Run, token: string): Promise<void>;
|
|
100
|
-
}
|
|
1
|
+
export * from "langchain-core/callbacks/tracers/log_stream";
|