Files
langgraph/libs/cli/langgraph_cli
Eugene YurtsevandGitHub adac016e33 cli: support dict format for graph specification in langgraph.json (#4164)
Allow the CLI to work with dict format for the graph specification.

```json
{
  "dependencies": ["./my_agent"],
  "graphs": {
    "agent": {
      "path": "./my_agent/agent.py:graph",
      "description": "this is my agent description"
    }
  },
  "env": ".env"
}
```

And backwards compatible with:

```json
{
  "dependencies": ["./my_agent"],
  "graphs": {
    "agent": "./my_agent/agent.py:graph",
  },
  "env": ".env"
}
```
2025-04-04 10:16:20 -04:00
..
2024-06-24 18:14:56 -04:00
2024-06-24 18:14:56 -04:00
2025-02-18 15:51:05 +01:00
2024-07-21 12:19:19 -07:00
2024-06-20 17:08:35 -04:00
2024-06-18 20:19:55 -04:00
2024-06-24 18:14:56 -04:00