Skip to content

Commit

Permalink
Merge branch 'main' into brace/allow-update-state-end
Browse files Browse the repository at this point in the history
  • Loading branch information
bracesproul authored Dec 6, 2024
2 parents 4e163c7 + b52fb0d commit e63b5b6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libs/langgraph/src/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ export class GraphInterrupt extends GraphBubbleUp {

/** Raised by a node to interrupt execution. */
export class NodeInterrupt extends GraphInterrupt {
constructor(message: string, fields?: BaseLangGraphErrorFields) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
constructor(message: any, fields?: BaseLangGraphErrorFields) {
super(
[
{
Expand Down

0 comments on commit e63b5b6

Please sign in to comment.