Skip to content

Commit

Permalink
chore: lint files
Browse files Browse the repository at this point in the history
  • Loading branch information
bracesproul committed Dec 16, 2024
1 parent e8bfd53 commit f379d52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/langchain-anthropic/src/utils/message_inputs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ function mergeMessages(messages: AnthropicMessageCreateParams["messages"]) {
);
};

for (let i = 1; i < messages.length; i++) {
for (let i = 1; i < messages.length; i += 1) {
const nextMessage = messages[i];

if (
Expand Down

0 comments on commit f379d52

Please sign in to comment.