Tat Dat Duong
efa51fe22c
Update README.md
2025-01-17 23:40:58 +01:00
Tat Dat Duong
11f2501c98
docs: add mention of JS CLI
2025-01-17 23:40:58 +01:00
Eugene Yurtsev and GitHub
71e6002a3c
docs: update broken api reference ( #3093 )
2025-01-17 17:04:54 -05:00
Andrew Nguonly and GitHub
26e3ded701
docs: Add note about cron jobs not available in LangGraph Platform Self-Hosted Lite ( #3091 )
2025-01-17 12:52:46 -08:00
Eugene Yurtsev and GitHub
4fcd1690f9
docs: expose functional api reference ( #3089 )
...
The API reference is marked as experimental right now, so this is OK to expose to make it easier to share w/ beta users.
2025-01-17 15:18:43 -05:00
Vadym Barda and GitHub
eb33a873c8
langgraph: release 0.2.64 ( #3090 )
0.2.64
2025-01-17 15:18:34 -05:00
91aa66f4cf
tests: add tests for calling multiple subgraphs in a parent node ( #3070 )
...
Co-authored-by: Nuno Campos <nuno@langchain.dev >
2025-01-17 15:16:01 -05:00
Eugene Yurtsev
4476640702
x
2025-01-17 15:08:32 -05:00
Eugene Yurtsev and GitHub
727e3f1730
functional api: first pass at api reference ( #3083 )
...
First pass at the API reference for the functional API
2025-01-17 14:46:22 -05:00
Vadym Barda and GitHub
943dd28863
docs: update state to include 'next' for supervisor notebooks ( #3087 )
2025-01-17 14:32:15 -05:00
ccurme and GitHub
aa9d253978
docs: highlight lines in troubleshooting doc ( #3084 )
...

2025-01-17 18:53:21 +00:00
Eugene Yurtsev and GitHub
a11c6cfe6b
Update docs/mkdocs.yml
2025-01-17 13:36:44 -05:00
Eugene Yurtsev
15c79dc3c3
x
2025-01-17 13:34:49 -05:00
Eugene Yurtsev
a65c9f1e04
x
2025-01-17 13:11:23 -05:00
9912ae1053
docs: add high level example into the readme, make examples collapsible ( #3052 )
...
Co-authored-by: Chester Curme <chester.curme@gmail.com >
2025-01-17 17:10:22 +00:00
ccurme and GitHub
7db29042b4
docs[patch]: update quickstart tutorial to use interrupt() ( #3053 )
...
Need to update cassettes
2025-01-17 11:24:40 -05:00
Chester Curme
f8033a20c1
update cassettes
2025-01-17 11:15:33 -05:00
Chester Curme
5e3aa495d9
update
2025-01-17 11:05:55 -05:00
Chester Curme
a54689affd
ruff
2025-01-17 11:02:58 -05:00
Chester Curme
02ea523897
udpate
2025-01-17 11:02:25 -05:00
Chester Curme
18c6637e6c
use message dicts instead of tuples
2025-01-17 10:34:21 -05:00
Chester Curme
4c02a4c501
Revert "disable parallel tool use"
...
This reverts commit 784b6afa11 .
2025-01-17 10:19:17 -05:00
Chester Curme
784b6afa11
disable parallel tool use
2025-01-17 10:15:06 -05:00
Chester Curme
b35b892d74
Merge branch 'main' into cc/update_quickstart
2025-01-17 10:02:29 -05:00
Chester Curme
e7aaf21121
update
2025-01-17 10:02:18 -05:00
Eugene Yurtsev
54115ac796
x
2025-01-17 09:58:06 -05:00
ccurme and GitHub
76be64adcb
docs[patch]: fix builds ( #3074 )
2025-01-17 02:41:47 +00:00
Nuno Campos
2cf98725c4
Lint
2025-01-16 16:32:39 -08:00
Nuno Campos
a33c59626a
Lint
2025-01-16 16:01:57 -08:00
Nuno Campos
56d3b759c7
Add one more test
2025-01-16 15:46:25 -08:00
Nuno Campos
32bf81c559
Lint
2025-01-16 14:10:16 -08:00
Eugene Yurtsev
de332ec31c
x
2025-01-16 17:08:12 -05:00
Eugene Yurtsev and GitHub
ce30965df4
functional api: Add ability to request previous output ( #3025 )
...
1. The inputs into foo do not affect any state behavior
2. `previous` always reflects the previous return value from the
function
3. Anything can be returned and that will be the new state for the
function on the next iteration
4. This API is not meant to support reducers in the inputs/state
```python
from langgraph.func import entrypoint
states = []
# In this version reducers do not work
@entrypoint(checkpointer=MemorySaver())
def foo(inputs, *, previous: Any) -> Any:
states.append(previous)
return {"previous": previous, "current": inputs}
config = {"configurable": {"thread_id": "1"}}
foo.invoke({"a": "1"}, config)
foo.invoke({"a": "2"}, config)
foo.invoke({"a": "3"}, config)
assert states == [
None,
{"current": {"a": "1"}, "previous": None},
{"current": {"a": "2"}, "previous": {"current": {"a": "1"}, "previous": None}},
]
```
2025-01-16 17:02:41 -05:00
Nuno Campos
b98a7b09a3
Update
2025-01-16 13:44:19 -08:00
Nuno Campos
86b6afc982
Implement get_graph for imperative api
2025-01-16 13:44:18 -08:00
Nuno Campos and GitHub
47122ce88b
docs: Add status field to Project object for Control Plane API ( #3075 )
2025-01-16 13:42:48 -08:00
Andrew Nguonly
002b048674
Add status field to Project object.
2025-01-16 13:27:23 -08:00
Eugene Yurtsev
a58f5dacca
x
2025-01-16 16:26:54 -05:00
Chester Curme
cc397b1629
update cassettes
2025-01-16 16:24:05 -05:00
Eugene Yurtsev
3a48049194
x
2025-01-16 16:19:23 -05:00
Eugene Yurtsev
e5f0db0af3
x
2025-01-16 16:09:11 -05:00
Chester Curme
93854ed721
fix link
2025-01-16 15:12:53 -05:00
Eugene Yurtsev
83a7acc57c
Merge branch 'main' into eugene/expose_previous_state
2025-01-16 14:56:46 -05:00
Eugene Yurtsev
b218cc76a7
type ignore for now
2025-01-16 14:50:40 -05:00
Eugene Yurtsev
d021f476db
x
2025-01-16 14:23:32 -05:00
Chester Curme
d978cb0392
part 7 -> part 6
2025-01-16 14:21:40 -05:00
Chester Curme
605fe4ea11
simplify hitl, condense part 5
2025-01-16 14:20:05 -05:00
Eugene Yurtsev
46907b6cf9
x
2025-01-16 14:04:00 -05:00
Eugene Yurtsev
582856b30c
x
2025-01-16 14:00:42 -05:00
Eugene Yurtsev
e476897177
fix merge error
2025-01-16 13:58:55 -05:00