From 7bc678b130e511f2d475680212c7d7faaa948ace Mon Sep 17 00:00:00 2001 From: isaac hershenson Date: Fri, 29 Aug 2025 12:53:47 -0700 Subject: [PATCH] readme update --- README.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 81ba051..27b3041 100644 --- a/README.md +++ b/README.md @@ -61,4 +61,18 @@ Each agent's `langgraph.json` specifies the shared package dependencies using re ## Usage -Each agent can be run independently using the LangGraph CLI, and both will have access to the shared utility functions via the dependency configuration. \ No newline at end of file +Each agent can be run independently using the LangGraph CLI, and both will have access to the shared utility functions via the dependency configuration. + +### Agent 1 + +```bash +langgraph build -t python-monorepo-agent-1 -c apps/agent1/langgraph.json +langgraph up -c apps/agent1/langgraph.json --image IMAGE_ID_GENERATED_ABOVE +``` + +### Agent 2 + +```bash +langgraph build -t python-monorepo-agent-2 -c apps/agent2/langgraph.json +langgraph up -c apps/agent2/langgraph.json --image IMAGE_ID_GENERATED_ABOVE +```