LangChain
blog.langchain.com › command-a-new-tool-for-multi-agent-architectures-in-langgraph
Command: A new tool for building multi-agent architectures in LangGraph
December 10, 2024 - Learn about Command, a new tool in LangGraph that helps facilitate multi-agent communication.
Videos
08:31
Command: a new tool for building multi-agent architectures in ...
04:17
LangGraph Crash Course #30 - Human In The Loop - Command Class ...
Dynamic Routing in LangGraph with Command()
08:13
Deploy CLI: The Easiest Way to Deploy Agents from Your Terminal ...
09:49
LangGraph Builder - YouTube
05:39
LangSmith Studio: connect to a locally running agent - YouTube
LangChain
langchain-ai.github.io › langgraphjs › reference › classes › langgraph.Command.html
Command | LangGraph.js API Reference
"nodeB" : "nodeC"; // note how Command allows you to BOTH update the graph state AND route to the next node return new Command({ // this is the state update update: { foo: "a", }, // this is a replacement for an edge goto, }); }; // Nodes B and C are unchanged const nodeB = async (state: typeof StateAnnotation.State) => { console.log("Called B"); return { foo: state.foo + "|b", }; } const nodeC = async (state: typeof StateAnnotation.State) => { console.log("Called C"); return { foo: state.foo + "|c", }; } import { StateGraph } from "@langchain/langgraph"; // NOTE: there are no edges between nodes A, B and C!
PyPI
pypi.org › project › langgraph-cli
langgraph-cli · PyPI
langgraph up [OPTIONS] -p, --port INTEGER Port to expose (default: 8123) --wait Wait for services to start --watch Restart on file changes --verbose Show detailed logs -c, --config FILE Config file path -d, --docker-compose Additional services file
» pip install langgraph-cli
Published Apr 17, 2026
Version 0.4.23
Medium
medium.com › @vivekvjnk › the-command-object-in-langgraph-bc29bf57d18f
The Command Object in Langgraph. What is the Command Object in… | by Story_Teller | Medium
December 24, 2024 - Instead of relying on external routing logic, the node itself returns a Command object containing both the updated state and the destination node. For instance, as shown in the example code, the node evaluates whether the metrics are satisfied. If successful, the Command object routes execution to the Output Requirement Analysis node.
Langchain
docs.langchain.com › langsmith › cli
LangGraph CLI - Docs by LangChain
March 8, 2026 - The npx @langchain/langgraph-cli dockerfile command translates all the configuration in your langgraph.json file into Dockerfile commands. When using this command, you will have to re-run it whenever you update your langgraph.json file.
GitHub
github.com › langchain-ai › langgraph
GitHub - langchain-ai/langgraph: Build resilient language agents as graphs. · GitHub
3 days ago - Build resilient language agents as graphs. Contribute to langchain-ai/langgraph development by creating an account on GitHub.
Starred by 30K users
Forked by 5.1K users
Languages Python
DEV Community
dev.to › jamesbmour › interrupts-and-commands-in-langgraph-building-human-in-the-loop-workflows-4ngl
Interrupts and Commands in LangGraph: Building Human-in-the-Loop Workflows - DEV Community
September 9, 2025 - We have four: one for getting approval (with interrupt), one for routing (with command), and two terminals for completing or canceling. The get_approval node pauses the graph, prints the task, and waits for input. The router decides the next step dynamically. The others just finalize the status. from langgraph.types import interrupt, Command def get_approval(state: WorkflowState): """ This node uses 'interrupt' to pause the graph.
Mintlify
mintlify.com › langchain-ai › langgraph › cli › commands
CLI Commands - LangGraph
Meet the next generation of documentation. AI-native, beautiful out-of-the-box, and built for developers.