mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-09-17 01:56:18 +00:00
* feat(agents): allow custom agents to disable memory Signed-off-by: Beautyl0ve <74452755+Beautyl0ve@users.noreply.github.com> * fix(agents): honor memory opt-out during compaction Signed-off-by: Beautyl0ve <74452755+Beautyl0ve@users.noreply.github.com> * fix(runtime): preserve agent binding across state rewrites * fix(client): apply named-agent memory policy * fix(agents): address memory policy review feedback Signed-off-by: Beautyl0ve <74452755+Beautyl0ve@users.noreply.github.com> * fix(agents): address remaining memory opt-out reviews Signed-off-by: Beautyl0ve <74452755+Beautyl0ve@users.noreply.github.com> --------- Signed-off-by: Beautyl0ve <74452755+Beautyl0ve@users.noreply.github.com> Co-authored-by: PeaceMaker-best <221849497+PeaceMaker-best@users.noreply.github.com> Co-authored-by: Willem Jiang <willem.jiang@gmail.com>
28 lines
1.2 KiB
Python
28 lines
1.2 KiB
Python
"""Private runtime context keys shared across DeerFlow runtime components."""
|
|
|
|
from collections.abc import Mapping
|
|
from typing import Final
|
|
|
|
CURRENT_RUN_PRE_EXISTING_MESSAGE_IDS_KEY: Final[str] = "__deerflow_pre_run_message_ids"
|
|
|
|
# Server-authored checkpoint metadata that binds materialized state to the
|
|
# agent policy which produced it. The sentinel is intentionally not a valid
|
|
# custom-agent name, so a missing/invalid legacy value cannot be confused with
|
|
# the default agent and accidentally authorize a memory write.
|
|
CHECKPOINT_AGENT_NAME_METADATA_KEY: Final[str] = "deerflow_agent_name"
|
|
DEFAULT_AGENT_NAME_METADATA_VALUE: Final[str] = "__default__"
|
|
|
|
|
|
def checkpoint_agent_binding_metadata(metadata: object) -> dict[str, str]:
|
|
"""Copy a checkpoint's server-authored agent binding for a state rewrite.
|
|
|
|
Callers must pass persisted checkpoint metadata, never request metadata.
|
|
Missing or malformed values remain unbound so memory writes fail closed.
|
|
"""
|
|
if not isinstance(metadata, Mapping):
|
|
return {}
|
|
value = metadata.get(CHECKPOINT_AGENT_NAME_METADATA_KEY)
|
|
if not isinstance(value, str) or not value:
|
|
return {}
|
|
return {CHECKPOINT_AGENT_NAME_METADATA_KEY: value}
|