[PR #636] [CLOSED] feat: vercel kv checkpointer #902

Closed
opened 2026-02-15 19:16:21 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraphjs/pull/636
Author: @chentschel
Created: 10/27/2024
Status: Closed

Base: mainHead: feat/checkpointer-vercel-kv


📝 Commits (7)

📊 Changes

17 files changed (+982 additions, -0 deletions)

View changed files

libs/checkpoint-vercel-kv/.env.example (+6 -0)
libs/checkpoint-vercel-kv/.eslintrc.cjs (+69 -0)
libs/checkpoint-vercel-kv/.gitignore (+7 -0)
libs/checkpoint-vercel-kv/.prettierrc (+19 -0)
libs/checkpoint-vercel-kv/.release-it.json (+13 -0)
libs/checkpoint-vercel-kv/LICENSE (+21 -0)
libs/checkpoint-vercel-kv/README.md (+62 -0)
libs/checkpoint-vercel-kv/jest.config.cjs (+20 -0)
libs/checkpoint-vercel-kv/jest.env.cjs (+12 -0)
libs/checkpoint-vercel-kv/langchain.config.js (+21 -0)
libs/checkpoint-vercel-kv/package.json (+92 -0)
libs/checkpoint-vercel-kv/src/index.ts (+388 -0)
libs/checkpoint-vercel-kv/src/tests/checkpoints.int.test.ts (+147 -0)
libs/checkpoint-vercel-kv/tsconfig.cjs.json (+8 -0)
libs/checkpoint-vercel-kv/tsconfig.json (+23 -0)
libs/checkpoint-vercel-kv/turbo.json (+11 -0)
📝 yarn.lock (+63 -0)

📄 Description

Vercel KV checkpointer . Contribution by https://x.com/chentschel_


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/langgraphjs/pull/636 **Author:** [@chentschel](https://github.com/chentschel) **Created:** 10/27/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feat/checkpointer-vercel-kv` --- ### 📝 Commits (7) - [`301fd12`](https://github.com/langchain-ai/langgraphjs/commit/301fd12c2652a5e329728cfa45bc9ed91fdf1927) feat: vercel kv checkpointer - [`738226d`](https://github.com/langchain-ai/langgraphjs/commit/738226d707e4933ff2f40f796f85f7608776c26c) feat: migrated checkpoint APIs - [`4cf4e8c`](https://github.com/langchain-ai/langgraphjs/commit/4cf4e8c1dd61f4258baa3c1a7e886176c1d7fe69) fix: readme - [`671564f`](https://github.com/langchain-ai/langgraphjs/commit/671564fb31556b03772c5b2900d37c4210e5ec63) feat: filter metadata - [`d0182db`](https://github.com/langchain-ai/langgraphjs/commit/d0182db5bdfd719e0a1888abeaa60949a9fc254a) fix: integration tests - [`92bf919`](https://github.com/langchain-ai/langgraphjs/commit/92bf9197b5c0d00b9760b993a9da693030dd1503) fix: nit & cast - [`768cc20`](https://github.com/langchain-ai/langgraphjs/commit/768cc2083f5a5878924426371937ae4d18eea329) Merge branch 'main' into feat/checkpointer-vercel-kv ### 📊 Changes **17 files changed** (+982 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `libs/checkpoint-vercel-kv/.env.example` (+6 -0) ➕ `libs/checkpoint-vercel-kv/.eslintrc.cjs` (+69 -0) ➕ `libs/checkpoint-vercel-kv/.gitignore` (+7 -0) ➕ `libs/checkpoint-vercel-kv/.prettierrc` (+19 -0) ➕ `libs/checkpoint-vercel-kv/.release-it.json` (+13 -0) ➕ `libs/checkpoint-vercel-kv/LICENSE` (+21 -0) ➕ `libs/checkpoint-vercel-kv/README.md` (+62 -0) ➕ `libs/checkpoint-vercel-kv/jest.config.cjs` (+20 -0) ➕ `libs/checkpoint-vercel-kv/jest.env.cjs` (+12 -0) ➕ `libs/checkpoint-vercel-kv/langchain.config.js` (+21 -0) ➕ `libs/checkpoint-vercel-kv/package.json` (+92 -0) ➕ `libs/checkpoint-vercel-kv/src/index.ts` (+388 -0) ➕ `libs/checkpoint-vercel-kv/src/tests/checkpoints.int.test.ts` (+147 -0) ➕ `libs/checkpoint-vercel-kv/tsconfig.cjs.json` (+8 -0) ➕ `libs/checkpoint-vercel-kv/tsconfig.json` (+23 -0) ➕ `libs/checkpoint-vercel-kv/turbo.json` (+11 -0) 📝 `yarn.lock` (+63 -0) </details> ### 📄 Description <!-- Thank you for contributing to LangGraph.js! Your PR will appear in our next release under the title you set above. Please make sure it highlights your valuable contribution. To help streamline the review process, please make sure you read our contribution guidelines: https://github.com/langchain-ai/langgraphjs/blob/main/CONTRIBUTING.md Replace this block with a description of the change, the issue it fixes (if applicable), and relevant context. Finally, we'd love to show appreciation for your contribution - if you'd like us to shout you out on Twitter, please also include your handle below! --> <!-- Remove if not applicable --> Vercel KV checkpointer . Contribution by `https://x.com/chentschel_` --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-15 19:16:21 -05:00
yindo closed this issue 2026-02-15 19:16:21 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/langgraphjs#902