readme update

This commit is contained in:
isaac hershenson
2025-08-29 12:53:47 -07:00
parent f5824ba746
commit 7bc678b130
+15 -1
View File
@@ -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.
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
```