Skip to content

Commit 660af3e

Browse files
core[minor]: exclude model cache from serialization (langchain-ai#6929)
Co-authored-by: jacoblee93 <[email protected]>
1 parent a5c03d9 commit 660af3e

File tree

3 files changed

+22
-6
lines changed

3 files changed

+22
-6
lines changed

langchain-core/src/language_models/base.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -363,13 +363,14 @@ export abstract class BaseLanguageModel<
363363
callbackManager,
364364
...params
365365
}: BaseLanguageModelParams) {
366+
const { cache, ...rest } = params;
366367
super({
367368
callbacks: callbacks ?? callbackManager,
368-
...params,
369+
...rest,
369370
});
370-
if (typeof params.cache === "object") {
371-
this.cache = params.cache;
372-
} else if (params.cache) {
371+
if (typeof cache === "object") {
372+
this.cache = cache;
373+
} else if (cache) {
373374
this.cache = InMemoryCache.global();
374375
} else {
375376
this.cache = undefined;

langchain-core/src/language_models/tests/chat_models.test.ts

+12
Original file line numberDiff line numberDiff line change
@@ -323,3 +323,15 @@ test("Test ChatModel can stream back a custom event", async () => {
323323
}
324324
expect(customEvent).toBeDefined();
325325
});
326+
327+
test(`Test ChatModel should not serialize a passed "cache" parameter`, async () => {
328+
const model = new FakeListChatModel({
329+
responses: ["hi"],
330+
emitCustomEvent: true,
331+
cache: true,
332+
});
333+
console.log(JSON.stringify(model));
334+
expect(JSON.stringify(model)).toEqual(
335+
`{"lc":1,"type":"constructor","id":["langchain","chat_models","fake-list","FakeListChatModel"],"kwargs":{"responses":["hi"],"emit_custom_event":true}}`
336+
);
337+
});

langchain-core/src/utils/testing/index.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,8 @@ export class FakeListChatModel extends BaseChatModel<FakeListChatModelCallOption
354354
return "FakeListChatModel";
355355
}
356356

357+
lc_serializable = true;
358+
357359
responses: string[];
358360

359361
i = 0;
@@ -362,8 +364,9 @@ export class FakeListChatModel extends BaseChatModel<FakeListChatModelCallOption
362364

363365
emitCustomEvent = false;
364366

365-
constructor({ responses, sleep, emitCustomEvent }: FakeChatInput) {
366-
super({});
367+
constructor(params: FakeChatInput) {
368+
super(params);
369+
const { responses, sleep, emitCustomEvent } = params;
367370
this.responses = responses;
368371
this.sleep = sleep;
369372
this.emitCustomEvent = emitCustomEvent ?? this.emitCustomEvent;

0 commit comments

Comments
 (0)