Compare commits

...
Author SHA1 Message Date
Harrison Chase 67f6ab27b8 add overwrite command 2025-10-13 16:50:08 -07:00
3 changed files with 63 additions and 10 deletions
+2 -1
View File
@@ -1,3 +1,4 @@
from langgraph.pregel._write import Overwrite, overwrite
from langgraph.pregel.main import NodeBuilder, Pregel
__all__ = ("Pregel", "NodeBuilder")
__all__ = ("Pregel", "NodeBuilder", "overwrite", "Overwrite")
+29 -3
View File
@@ -71,6 +71,7 @@ from langgraph.pregel._call import get_runnable_for_task, identifier
from langgraph.pregel._io import read_channels
from langgraph.pregel._log import logger
from langgraph.pregel._read import INPUT_CACHE_KEY_TYPE, PregelNode
from langgraph.pregel._write import _Overwrite
from langgraph.runtime import DEFAULT_RUNTIME, Runtime
from langgraph.types import (
All,
@@ -198,8 +199,16 @@ def local_read(
# apply writes
local_channels: dict[str, BaseChannel] = {}
for k in channels:
if updated[k]:
# If any overwrite is present for this channel, reflect it directly
ow = next((v for v in updated[k] if isinstance(v, _Overwrite)), None)
if ow is not None:
cc = channels[k].from_checkpoint(ow.value)
else:
cc = channels[k].copy()
cc.update(updated[k])
else:
cc = channels[k].copy()
local_channels[k] = cc
# read fresh values
values = read_channels(local_channels, select)
@@ -277,11 +286,15 @@ def apply_writes(
# Group writes by channel
pending_writes_by_channel: dict[str, list[Any]] = defaultdict(list)
overwrite_by_channel: dict[str, Any] = {}
for task in tasks:
for chan, val in task.writes:
if chan in (NO_WRITES, PUSH, RESUME, INTERRUPT, RETURN, ERROR):
pass
elif chan in channels:
continue
if chan in channels:
if isinstance(val, _Overwrite):
overwrite_by_channel[chan] = val.value
else:
pending_writes_by_channel[chan].append(val)
else:
logger.warning(
@@ -290,8 +303,21 @@ def apply_writes(
# Apply writes to channels
updated_channels: set[str] = set()
for chan, vals in pending_writes_by_channel.items():
for chan in set(pending_writes_by_channel.keys()) | set(
overwrite_by_channel.keys()
):
if chan in channels:
if chan in overwrite_by_channel:
# Overwrite the entire channel value, bypassing reducers.
channels[chan] = channels[chan].from_checkpoint(
overwrite_by_channel[chan]
)
if next_version is not None:
checkpoint["channel_versions"][chan] = next_version
if channels[chan].is_available():
updated_channels.add(chan)
else:
vals = pending_writes_by_channel.get(chan, [])
if channels[chan].update(vals) and next_version is not None:
checkpoint["channel_versions"][chan] = next_version
# unavailable channels can't trigger tasks, so don't add them
+26
View File
@@ -26,6 +26,32 @@ SKIP_WRITE = object()
PASSTHROUGH = object()
class _Overwrite:
"""Marker wrapper indicating a direct channel overwrite.
Use via `overwrite(channel, value)` or `Overwrite(value)`.
"""
__slots__ = ("value",)
def __init__(self, value: Any):
self.value = value
def Overwrite(value: Any) -> _Overwrite:
"""Wrap a value to force overwrite a channel, bypassing reducers."""
return _Overwrite(value)
def overwrite(channel: str, value: Any) -> ChannelWriteEntry:
"""Convenience factory for a write that overwrites the target channel.
Example:
NodeBuilder().write_to(overwrite("foo", 123))
"""
return ChannelWriteEntry(channel, Overwrite(value))
class ChannelWriteEntry(NamedTuple):
channel: str
"""Channel name to write to."""