Open
Description
When using the supervisor/agent pattern, I'm wondering what's the best way to share a checkpointer across multiple agents? I'd like all of my agents to share the same supervisor thread id so we can trace the flow across all agents within a graph. I've tried explicitly passing configurable
to the child invoke but I don't think that's doing what I intend. Ideally, I'd like the supervisor checkpoint_id
to be the parent_checkpoint_id
of the agent.