From 30f9bcd8deabc515183e09c9407de7b800d06c9a Mon Sep 17 00:00:00 2001 From: William FH <13333726+hinthornw@users.noreply.github.com> Date: Wed, 16 Apr 2025 16:39:04 -0700 Subject: [PATCH] Make docstring even less ambiguous (#4308) --- libs/sdk-py/langgraph_sdk/schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/sdk-py/langgraph_sdk/schema.py b/libs/sdk-py/langgraph_sdk/schema.py index 70c4eb610..213dfdaa3 100644 --- a/libs/sdk-py/langgraph_sdk/schema.py +++ b/libs/sdk-py/langgraph_sdk/schema.py @@ -125,7 +125,7 @@ class Checkpoint(TypedDict): thread_id: str """Unique identifier for the thread associated with this checkpoint.""" checkpoint_ns: str - """Namespace for the checkpoint, used for organization and retrieval.""" + """Namespace for the checkpoint; used internally to manage subgraph state.""" checkpoint_id: Optional[str] """Optional unique identifier for the checkpoint itself.""" checkpoint_map: Optional[dict[str, Any]]