mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-09-23 01:55:06 +02:00
Follow-up to review on #8540, where a stale `# noqa: E402` slipped past me and Sydney spotted it by eye. This turns on the rule that catches that automatically. `RUF100` flags a `noqa` that suppresses nothing. `sdk-py` already had it through its blanket `RUF` selection; this adds it to the other seven packages and clears what it finds. ### The 33 it flags, all autofixed **Blanket `# noqa` on docstring-closing lines** (4, in `checkpoint-postgres` and `checkpoint-sqlite`). `E501` is in `lint.ignore` for those packages, so nothing was being suppressed: ```diff - """ # noqa + """ ``` **`# noqa: F821` on `anext(aiter_)`** (2). Left over from Python 3.9 support. `anext` became a builtin in 3.10, which is the floor now, so `F821` no longer fires: ```diff - anext(aiter_), # type: ignore[arg-type] # noqa: F821 + anext(aiter_), # type: ignore[arg-type] ``` **Suppressions naming rules the package does not enable** (27), across `langgraph`, `prebuilt` and `checkpoint-sqlite`: `FBT001`, `FBT002`, `TC002`, `BLE001`, `ANN001`, `ANN002`, `ANN003`, `E501`, `F401`. Mostly copied between packages whose rule sets differ. ### One measurement note If you check these numbers yourself, use `--extend-select`: ``` ruff check --select RUF100 . # 81, misleading ruff check --extend-select RUF100 . # 33, real ``` With a bare `--select`, ruff treats every other rule as disabled, so every suppression for another rule looks unused. I quoted 81 before catching that. ### Verified `checkpoint-sqlite` 118 passed, `prebuilt` 284 passed, `langgraph` 1968 passed, `checkpoint-postgres` 264 passed on PG 15 and 16. `make lint` clean in every package. Independent of #8540 and #8537, so it can land in any order.
242 lines
7.4 KiB
Python
242 lines
7.4 KiB
Python
from __future__ import annotations
|
|
|
|
from collections.abc import Sequence
|
|
from dataclasses import dataclass
|
|
from enum import Enum
|
|
from typing import Any, Literal
|
|
from warnings import warn
|
|
|
|
# EmptyChannelError is re-exported from langgraph.channels.base
|
|
from langgraph.checkpoint.base import EmptyChannelError
|
|
from typing_extensions import deprecated
|
|
|
|
from langgraph.types import Command, Interrupt
|
|
from langgraph.warnings import LangGraphDeprecatedSinceV10
|
|
|
|
__all__ = (
|
|
"EmptyChannelError",
|
|
"ErrorCode",
|
|
"GraphDrained",
|
|
"GraphRecursionError",
|
|
"InvalidUpdateError",
|
|
"GraphBubbleUp",
|
|
"GraphInterrupt",
|
|
"NodeCancelledError",
|
|
"NodeError",
|
|
"NodeInterrupt",
|
|
"NodeTimeoutError",
|
|
"ParentCommand",
|
|
"EmptyInputError",
|
|
"TaskNotFound",
|
|
)
|
|
|
|
|
|
class ErrorCode(Enum):
|
|
GRAPH_RECURSION_LIMIT = "GRAPH_RECURSION_LIMIT"
|
|
INVALID_CONCURRENT_GRAPH_UPDATE = "INVALID_CONCURRENT_GRAPH_UPDATE"
|
|
INVALID_GRAPH_NODE_RETURN_VALUE = "INVALID_GRAPH_NODE_RETURN_VALUE"
|
|
MULTIPLE_SUBGRAPHS = "MULTIPLE_SUBGRAPHS"
|
|
INVALID_CHAT_HISTORY = "INVALID_CHAT_HISTORY"
|
|
|
|
|
|
def create_error_message(*, message: str, error_code: ErrorCode) -> str:
|
|
return (
|
|
f"{message}\n"
|
|
"For troubleshooting, visit: https://docs.langchain.com/oss/python/langgraph/"
|
|
f"errors/{error_code.value}"
|
|
)
|
|
|
|
|
|
class GraphBubbleUp(Exception):
|
|
pass
|
|
|
|
|
|
class GraphDrained(GraphBubbleUp):
|
|
"""Raised when a graph run exits early due to a drain request.
|
|
|
|
This indicates the graph stopped cooperatively at a superstep boundary
|
|
because `RunControl.request_drain()` was called (e.g., in response to
|
|
SIGTERM). The checkpoint is saved and the run can be resumed later.
|
|
"""
|
|
|
|
def __init__(self, reason: str = "shutdown") -> None:
|
|
self.reason = reason
|
|
super().__init__(f"Graph drained: {reason}")
|
|
|
|
|
|
class GraphRecursionError(RecursionError):
|
|
"""Raised when the graph has exhausted the maximum number of steps.
|
|
|
|
This prevents infinite loops. To increase the maximum number of steps,
|
|
run your graph with a config specifying a higher `recursion_limit`.
|
|
|
|
Troubleshooting guides:
|
|
|
|
- [`GRAPH_RECURSION_LIMIT`](https://docs.langchain.com/oss/python/langgraph/GRAPH_RECURSION_LIMIT)
|
|
|
|
Examples:
|
|
|
|
graph = builder.compile()
|
|
graph.invoke(
|
|
{"messages": [("user", "Hello, world!")]},
|
|
# The config is the second positional argument
|
|
{"recursion_limit": 1000},
|
|
)
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class InvalidUpdateError(Exception):
|
|
"""Raised when attempting to update a channel with an invalid set of updates.
|
|
|
|
Troubleshooting guides:
|
|
|
|
- [`INVALID_CONCURRENT_GRAPH_UPDATE`](https://docs.langchain.com/oss/python/langgraph/INVALID_CONCURRENT_GRAPH_UPDATE)
|
|
- [`INVALID_GRAPH_NODE_RETURN_VALUE`](https://docs.langchain.com/oss/python/langgraph/INVALID_GRAPH_NODE_RETURN_VALUE)
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class GraphInterrupt(GraphBubbleUp):
|
|
"""Raised when a subgraph is interrupted, suppressed by the root graph.
|
|
Never raised directly, or surfaced to the user."""
|
|
|
|
def __init__(self, interrupts: Sequence[Interrupt] = ()) -> None:
|
|
super().__init__(interrupts)
|
|
|
|
|
|
@deprecated(
|
|
"NodeInterrupt is deprecated. Please use [`interrupt`][langgraph.types.interrupt] instead.",
|
|
category=None,
|
|
)
|
|
class NodeInterrupt(GraphInterrupt):
|
|
"""Raised by a node to interrupt execution."""
|
|
|
|
def __init__(self, value: Any, id: str | None = None) -> None:
|
|
warn(
|
|
"NodeInterrupt is deprecated. Please use `langgraph.types.interrupt` instead.",
|
|
LangGraphDeprecatedSinceV10,
|
|
stacklevel=2,
|
|
)
|
|
if id is None:
|
|
super().__init__([Interrupt(value=value)])
|
|
else:
|
|
super().__init__([Interrupt(value=value, id=id)])
|
|
|
|
|
|
class ParentCommand(GraphBubbleUp):
|
|
args: tuple[Command]
|
|
|
|
def __init__(self, command: Command) -> None:
|
|
super().__init__(command)
|
|
|
|
|
|
class EmptyInputError(Exception):
|
|
"""Raised when graph receives an empty input."""
|
|
|
|
pass
|
|
|
|
|
|
class TaskNotFound(Exception):
|
|
"""Raised when the executor is unable to find a task (for distributed mode)."""
|
|
|
|
pass
|
|
|
|
|
|
@dataclass(frozen=True, slots=True)
|
|
class NodeError:
|
|
"""Failure context passed to a node-level error handler.
|
|
|
|
Inject by adding a parameter typed `NodeError` to a handler registered via
|
|
`StateGraph.add_node(..., error_handler=...)`:
|
|
|
|
```python
|
|
def handler(state: State, error: NodeError) -> Command:
|
|
return Command(update={"status": f"recovered from {error.node}: {error.error}"})
|
|
```
|
|
"""
|
|
|
|
node: str
|
|
"""Name of the node whose execution failed."""
|
|
|
|
error: BaseException
|
|
"""Exception raised by the failed node."""
|
|
|
|
|
|
class NodeCancelledError(Exception):
|
|
"""Raised when a node body raises ``asyncio.CancelledError`` itself.
|
|
|
|
``asyncio.CancelledError`` is a ``BaseException`` and the pregel runner
|
|
treats cancelled task futures as silent tear-down (e.g. when it stops
|
|
sibling tasks after a peer fails). That is the correct behaviour for
|
|
*framework-initiated* cancellation, but a user node that raises
|
|
``asyncio.CancelledError`` from its own body should surface as a node
|
|
failure, the same way any other exception would.
|
|
|
|
The retry layer converts user-raised ``asyncio.CancelledError`` into this
|
|
type so it flows through the normal error path and the run reports as
|
|
``error`` instead of silently succeeding.
|
|
"""
|
|
|
|
node: str
|
|
|
|
def __init__(self, node: str, message: str | None = None) -> None:
|
|
super().__init__(message or f"Node {node!r} raised asyncio.CancelledError")
|
|
self.node = node
|
|
|
|
|
|
class NodeTimeoutError(Exception):
|
|
"""Raised when a node invocation exceeds one of its configured timeouts.
|
|
|
|
Does **not** inherit from the built-in `TimeoutError` (a subclass of
|
|
`OSError`) so that the default `RetryPolicy` treats it as retryable.
|
|
|
|
Both `idle_timeout` and `run_timeout` reflect the configured policy at the
|
|
time of the failure (each is `None` if not configured). `kind` and
|
|
`timeout` identify which one fired.
|
|
"""
|
|
|
|
node: str
|
|
timeout: float
|
|
run_timeout: float | None
|
|
idle_timeout: float | None
|
|
elapsed: float
|
|
kind: Literal["idle", "run"]
|
|
|
|
def __init__(
|
|
self,
|
|
node: str,
|
|
elapsed: float,
|
|
*,
|
|
kind: Literal["idle", "run"],
|
|
idle_timeout: float | None = None,
|
|
run_timeout: float | None = None,
|
|
) -> None:
|
|
if kind == "idle":
|
|
if idle_timeout is None:
|
|
raise ValueError("idle_timeout is required when kind='idle'")
|
|
message = (
|
|
f"Node '{node}' exceeded its idle timeout of "
|
|
f"{idle_timeout:.3f}s without making progress "
|
|
f"(elapsed: {elapsed:.3f}s)."
|
|
)
|
|
self.timeout = idle_timeout
|
|
elif kind == "run":
|
|
if run_timeout is None:
|
|
raise ValueError("run_timeout is required when kind='run'")
|
|
message = (
|
|
f"Node '{node}' exceeded its run timeout of "
|
|
f"{run_timeout:.3f}s (elapsed: {elapsed:.3f}s)."
|
|
)
|
|
self.timeout = run_timeout
|
|
else:
|
|
raise ValueError("kind must be 'idle' or 'run'")
|
|
super().__init__(message)
|
|
self.node = node
|
|
self.elapsed = elapsed
|
|
self.kind = kind
|
|
self.idle_timeout = idle_timeout
|
|
self.run_timeout = run_timeout
|