Skip to content

Commit

Permalink
chore: lint files
Browse files Browse the repository at this point in the history
  • Loading branch information
bracesproul committed Jul 10, 2024
1 parent c7cb3ab commit ce10f0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion langchain-core/src/messages/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export function getBufferString(
throw new Error(`Got unsupported message type: ${m._getType()}`);
}
const nameStr = m.name ? `${m.name}, ` : "";
let readableContent =
const readableContent =
typeof m.content === "string"
? m.content
: JSON.stringify(m.content, null, 2);
Expand Down

0 comments on commit ce10f0a

Please sign in to comment.