Asynchronously get the current page of the browser.
Get the current page of the browser. Args: browser: The browser to get the current page from.
Build a session key from RunnableConfig.
checkpoint_ns_scope controls how much of checkpoint_ns is used:
"full" (default): append the entire checkpoint_ns, so every tool
call gets its own session."parent": drop the innermost (per-tool-call) checkpoint_ns segment
and append only the enclosing scope.Examples::
Top-level agent (ns "tools:abc"):
full -> "thread-001:tools:abc"
parent -> "thread-001"
Subagent (ns "sub-a:1|tools:xyz"):
full -> "thread-001:sub-a:1|tools:xyz"
parent -> "thread-001:sub-a:1"