[PR #6] [MERGED] feat: decouple API from CLI #11

Closed
opened 2026-02-16 04:16:58 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraphjs-api/pull/6
Author: @dqbd
Created: 2/4/2025
Status: Merged
Merged: 2/4/2025
Merged by: @nfcampos

Base: mainHead: dqbd/decouple-api-cli


📝 Commits (10+)

📊 Changes

72 files changed (+740 additions, -252 deletions)

View changed files

📝 .github/workflows/ci.yml (+61 -3)
📝 libs/create-langgraph/package.json (+1 -1)
libs/langgraph-api/.gitignore (+8 -0)
libs/langgraph-api/LICENSE (+93 -0)
libs/langgraph-api/README.md (+3 -0)
libs/langgraph-api/package.json (+57 -0)
libs/langgraph-api/scripts/build.ps1 (+11 -0)
libs/langgraph-api/scripts/build.sh (+13 -0)
libs/langgraph-api/scripts/spawn.mjs (+16 -0)
📝 libs/langgraph-api/scripts/test.ps1 (+2 -2)
📝 libs/langgraph-api/scripts/test.sh (+2 -4)
📝 libs/langgraph-api/src/api/assistants.mts (+0 -0)
📝 libs/langgraph-api/src/api/runs.mts (+0 -0)
📝 libs/langgraph-api/src/api/store.mts (+0 -0)
📝 libs/langgraph-api/src/api/threads.mts (+0 -0)
📝 libs/langgraph-api/src/cli/entrypoint.mts (+0 -0)
📝 libs/langgraph-api/src/cli/spawn.mts (+3 -7)
📝 libs/langgraph-api/src/cli/utils/ipc/client.mts (+0 -0)
libs/langgraph-api/src/cli/utils/ipc/utils/get-pipe-path.mts (+30 -0)
libs/langgraph-api/src/cli/utils/ipc/utils/temporary-directory.mts (+42 -0)

...and 52 more files

📄 Description

  • feat: decouple langgraph-cli from langgraph-api
  • Remove test scripts
  • Prune dependencies

🔄 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-api/pull/6 **Author:** [@dqbd](https://github.com/dqbd) **Created:** 2/4/2025 **Status:** ✅ Merged **Merged:** 2/4/2025 **Merged by:** [@nfcampos](https://github.com/nfcampos) **Base:** `main` ← **Head:** `dqbd/decouple-api-cli` --- ### 📝 Commits (10+) - [`0dd8d94`](https://github.com/langchain-ai/langgraphjs-api/commit/0dd8d946b78b981c1888ee8b0929134f3e15494c) feat: decouple langgraph-cli from langgraph-api - [`9025a38`](https://github.com/langchain-ai/langgraphjs-api/commit/9025a38187d767b1bacb9ab6968d93be714ff4e8) Remove test scripts - [`dbcf731`](https://github.com/langchain-ai/langgraphjs-api/commit/dbcf731cf12591aa8ef9a5e337bb84a02bbc7443) Prune dependencies - [`2ad9138`](https://github.com/langchain-ai/langgraphjs-api/commit/2ad9138ebcbe96743f267675a3ce5de60a8c9f45) Update license to MIT - [`e88b790`](https://github.com/langchain-ai/langgraphjs-api/commit/e88b790e4691af2e00b8da18b7725719f03c65a9) Move logging - [`b8a3046`](https://github.com/langchain-ai/langgraphjs-api/commit/b8a3046fa2322d4211c7f0ff93a6a5453d5e4230) Update GH actions - [`4786e57`](https://github.com/langchain-ai/langgraphjs-api/commit/4786e57a8409c86e84674bb562ba30e5290a50c2) Bump the nWorkers back to default 10 - [`0626e01`](https://github.com/langchain-ai/langgraphjs-api/commit/0626e01a1c586430ab6bb35ed4f185f78441bdda) Fix types - [`9f14d49`](https://github.com/langchain-ai/langgraphjs-api/commit/9f14d49d6f4d6dcd89a43e98c49b08ea0b152af1) Remove tsx as a dependency for CLI - [`d8bd6c7`](https://github.com/langchain-ai/langgraphjs-api/commit/d8bd6c751068dc22654f12108b5822656ad78b6b) Windows test ### 📊 Changes **72 files changed** (+740 additions, -252 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/ci.yml` (+61 -3) 📝 `libs/create-langgraph/package.json` (+1 -1) ➕ `libs/langgraph-api/.gitignore` (+8 -0) ➕ `libs/langgraph-api/LICENSE` (+93 -0) ➕ `libs/langgraph-api/README.md` (+3 -0) ➕ `libs/langgraph-api/package.json` (+57 -0) ➕ `libs/langgraph-api/scripts/build.ps1` (+11 -0) ➕ `libs/langgraph-api/scripts/build.sh` (+13 -0) ➕ `libs/langgraph-api/scripts/spawn.mjs` (+16 -0) 📝 `libs/langgraph-api/scripts/test.ps1` (+2 -2) 📝 `libs/langgraph-api/scripts/test.sh` (+2 -4) 📝 `libs/langgraph-api/src/api/assistants.mts` (+0 -0) 📝 `libs/langgraph-api/src/api/runs.mts` (+0 -0) 📝 `libs/langgraph-api/src/api/store.mts` (+0 -0) 📝 `libs/langgraph-api/src/api/threads.mts` (+0 -0) 📝 `libs/langgraph-api/src/cli/entrypoint.mts` (+0 -0) 📝 `libs/langgraph-api/src/cli/spawn.mts` (+3 -7) 📝 `libs/langgraph-api/src/cli/utils/ipc/client.mts` (+0 -0) ➕ `libs/langgraph-api/src/cli/utils/ipc/utils/get-pipe-path.mts` (+30 -0) ➕ `libs/langgraph-api/src/cli/utils/ipc/utils/temporary-directory.mts` (+42 -0) _...and 52 more files_ </details> ### 📄 Description - **feat: decouple langgraph-cli from langgraph-api** - **Remove test scripts** - **Prune dependencies** --- <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-16 04:16:58 -05:00
yindo closed this issue 2026-02-16 04:16:58 -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-api#11