I have a graph, and in one of the nodes I’m invoking another graph.
I don’t need to have checkpoints for that other graph, so I added checkpoint_during=False when invoking it:
async def some_node(state, config):
res = await subgraph.ainvoke(
state, config, checkpoint_during=False
)
return {
"a": res,
}
The graph is executing correctly, I get the output I want. Do I actually need to specify False to prevent checkpointing of intermediate steps?
However, this is the error I get in the studio:
When I reload the page, I can see the graph again, and it works.
