William FH and GitHub
05f21a384b
Add image arg to up command ( #4385 )
...
Using this argument, you can get more customization since you can do
`langgraph build` or directly `docker build` your image and then re-use
the `langgraph up --image my-image` and have it also spin up redis &
postgres for you.
Easier then writing your own compose file
2025-04-23 07:48:01 -07:00
William FH and GitHub
a5f5d0c4df
Expose --tunnel flag to dev command ( #4370 )
...
Signed-off-by: William Fu-Hinthorn <13333726+hinthornw@users.noreply.github.com >
2025-04-22 14:23:09 +00:00
William FH and GitHub
20bd71e289
Bump lockfile ( #4346 )
2025-04-18 08:43:58 -07:00
Tat Dat Duong
e478a8deb9
Update schema
2025-04-17 22:25:47 +02:00
Tat Dat Duong
4bbdfbf381
Cleanup
2025-04-17 22:23:44 +02:00
Tat Dat Duong
db1fbe74cc
Revert args
2025-04-17 22:22:43 +02:00
Tat Dat Duong
01ce86ad9b
Bump to 0.2.5
2025-04-17 22:21:42 +02:00
Tat Dat Duong
d5f73fe37b
Add tests
2025-04-17 22:21:23 +02:00
Tat Dat Duong
5a200cd89e
feat(cli): add internal docker tag support
2025-04-17 22:15:10 +02:00
Tat Dat Duong
960f612dd7
Bump to 0.2.4
2025-04-16 23:34:54 +02:00
Tat Dat Duong
43af618bb5
Remove negation
2025-04-16 23:28:07 +02:00
Tat Dat Duong
2fc941c1df
fix(cli): only render progress when in TTY
...
Prevents logging terminal clear commands in non-TTY environments (LangSmith / CI)
2025-04-16 21:25:21 +02:00
Tat Dat Duong
5eefc1d55d
fix(cli): invert assumed python_version / js_version check
2025-04-11 16:38:26 +02:00
Tat Dat Duong
b7bd87a063
release(cli): 0.2.2
2025-04-11 01:34:08 +02:00
Tat Dat Duong
436902e5a3
Consolidate node_version and python_version fix
2025-04-11 01:04:26 +02:00
Tat Dat Duong
0ac6a96c6e
Fix up
2025-04-11 00:41:16 +02:00
Tat Dat Duong
d9856d92af
Another 3.9 fix
2025-04-11 00:09:34 +02:00
Tat Dat Duong
b3487cbc49
Fix Python 3.9
2025-04-11 00:06:31 +02:00
Tat Dat Duong
d06075cbcf
Fix new style config
2025-04-11 00:04:44 +02:00
Tat Dat Duong
e0be9ae2ef
feat(cli): add multiplatform support
...
Uses new `install-node.sh` script already used for Python Gen UI, add default `node_version` / `python_version` based on provided `graphs`
2025-04-10 23:52:49 +02:00
William FH and GitHub
a03cb0b16d
CLI: Ensure correct api version is used ( #4237 )
...
Signed-off-by: William Fu-Hinthorn <13333726+hinthornw@users.noreply.github.com >
2025-04-10 15:56:07 +00:00
Tat Dat Duong
6e7bfecbbc
chore(docs,cli): remove python-only label for custom auth, add test for custom auth in CLI
2025-04-10 14:34:52 +02:00
William FH and GitHub
2f51a15064
Update CLI ( #4213 )
2025-04-08 19:23:59 -07:00
William Fu-Hinthorn
5b58efc8d7
Update tests
2025-04-08 17:08:24 -07:00
William Fu-Hinthorn
1b9093459c
Remove pip from image
...
Signed-off-by: William Fu-Hinthorn <13333726+hinthornw@users.noreply.github.com >
2025-04-08 15:52:58 -07:00
Eugene Yurtsev and GitHub
05a4fcc8bb
cli: release 0.1.89 ( #4173 )
...
Release to pick up this: https://github.com/langchain-ai/langgraph/pull/4164
2025-04-04 13:46:47 -04:00
Eugene Yurtsev and GitHub
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
Tat Dat Duong
cba240e70e
release(cli): 0.1.84
2025-04-03 15:15:52 +02:00
Tat Dat Duong
78901599e6
Add test for UI config
2025-04-03 13:48:14 +02:00
Tat Dat Duong
958c0df2d7
Install Node.js runtime and run the build process to get the UI
2025-04-03 13:48:14 +02:00
Tat Dat Duong
6919de8b3e
feat(cli): pass ui and ui config to inmem server
2025-04-03 13:48:14 +02:00
William FH and GitHub
da8b8c606a
Release CLI ( #4124 )
...
Signed-off-by: William Fu-Hinthorn <13333726+hinthornw@users.noreply.github.com >
2025-04-01 21:28:58 -07:00
William FH and GitHub
dcda8c24d6
Add checkpointer configuration support in langgraph.json ( #4122 )
...
Signed-off-by: William Fu-Hinthorn <13333726+hinthornw@users.noreply.github.com >
2025-04-01 21:16:12 -07:00
William Fu-Hinthorn
9bd78ed483
Allow blocking in dev
...
Signed-off-by: William Fu-Hinthorn <13333726+hinthornw@users.noreply.github.com >
2025-04-01 05:45:47 -07:00
Tat Dat Duong
f629f68ec3
feat(cli): add support for gen ui config
2025-03-28 23:05:04 +01:00
Tat Dat Duong
39d85466f8
Bump to 0.1.80
2025-03-25 23:36:33 +01:00
Tat Dat Duong
3c797529bb
Avoid frozen lockfile
2025-03-25 23:32:40 +01:00
Tat Dat Duong
0d185d43ed
feat(cli): add packageManager and devEngines detection
2025-03-25 23:26:04 +01:00
William Fu-Hinthorn
9c36a7de85
Add studio URL flag
2025-03-21 11:20:29 -07:00
William Fu-Hinthorn
23bb5369b9
Studio cli command
2025-03-20 17:51:08 -07:00
Thapar and GitHub
ee8374c4c0
docs: Update bad link in libs/cli README.md ( #3919 )
...
Fixed reference hyperlink
2025-03-19 16:27:37 -04:00
William Fu-Hinthorn
18ed044c27
Bump patch version
2025-03-14 14:03:30 -07:00
William Fu-Hinthorn
394a9fa85f
Update schema
2025-03-14 13:48:23 -07:00
William Fu-Hinthorn
9741d9bdf0
Add tests for sweeper (sync)
2025-03-14 13:43:53 -07:00
William Fu-Hinthorn
f1162ac898
Bump
2025-03-11 20:22:58 -07:00
William Fu-Hinthorn
4de8443c5c
Add default TTL in store & CLI
2025-03-11 20:15:38 -07:00
Tat Dat Duong
0fdc787597
Bump to 0.1.75
2025-03-06 18:04:21 +01:00
Tat Dat Duong
3bd86fc6f5
Update schema
2025-03-06 17:57:51 +01:00
Tat Dat Duong
f1024f7341
feat(cli): allow sending UI args
2025-03-06 17:55:42 +01:00
William FH and GitHub
de85e7c246
Add json schema to CLI ( #3684 )
...
So you have cute IDE autocomplete / language server checking.
2025-03-04 23:48:27 +00:00