module documentation
LangGraph configuration management for Temporal workflows.
| Function | get |
Get the current LangGraph runnable config as a serializable dict. |
| Function | set |
Restore a LangGraph runnable config from a serialized dict. |
| Function | strip |
Return a serializable subset of a RunnableConfig. |
Restore a LangGraph runnable config from a serialized dict.
Returns the reconstructed Runtime so callers can re-inject it into the user function's kwargs without needing to know the configurable layout.
Return a serializable subset of a RunnableConfig.
LangGraph injects the active RunnableConfig into user functions as a config kwarg. The full object holds non-serializable things (callbacks, checkpointer/store/cache handles, pregel send/read callables) that can't cross an activity boundary, so we keep only primitive fields and the serializable subset of configurable.