Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoblee93 committed Dec 15, 2024
1 parent c5f110d commit a3d23d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/langchain-anthropic/src/tests/chat_models.int.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ test("system prompt caching", async () => {
0
);
const stream = await model.stream(messages);
let agg = undefined;
let agg;
for await (const chunk of stream) {
agg = agg === undefined ? chunk : concat(agg, chunk);
}
Expand Down

0 comments on commit a3d23d2

Please sign in to comment.