-
Checked other resources
Commit to Help
Example Codehttps://github.com/langchain-ai/langgraphjs/blob/27c9e8182753453c8461f56b023ef602f05397c9/libs/checkpoint/src/memory.ts#L316C6-L316C52 DescriptionI am deepping learning and understanding the And there is one small question to me about the implementation of the The type definenation of the // thread ID -> checkpoint namespace -> checkpoint ID -> checkpoint mapping
storage: Record<
string,
Record<string, Record<string, [Uint8Array, Uint8Array, string | undefined]>>
> = {}; In the So my question is what's the difference between the And I also found there is a method export function getCheckpointId(config: RunnableConfig): string {
return (
config.configurable?.checkpoint_id || config.configurable?.thread_ts || ""
);
} Is there any more docs that I can learn more about the checkpoint and the mechanism of the checkpoint id? System InfoThe latest version of the langgraph.js |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Wrong place, create a new one in langgraph.js repo: langchain-ai/langgraphjs#1341 |
Beta Was this translation helpful? Give feedback.
Wrong place, create a new one in langgraph.js repo: langchain-ai/langgraphjs#1341