David Duong and GitHub
e13a8bc320
fix: missing pgvector in CLI ( #3165 )
...
Fixes https://github.com/langchain-ai/langgraph/issues/3164
2025-01-25 04:27:42 +01:00
Tat Dat Duong
4b5b309152
Bump to 0.1.69
2025-01-25 04:18:18 +01:00
Tat Dat Duong
9d5166a0d3
Fix tests
2025-01-25 04:16:52 +01:00
Nuno Campos and GitHub
5b11683f4e
Fix type hints for entrypoint decorator ( #3198 )
2025-01-24 15:07:21 -08:00
Vadym Barda and GitHub
3fae8d47c3
langgraph: handle more callable types in tasks ( #3203 )
2025-01-24 22:50:42 +00:00
Nuno Campos
be9cb03dfa
Lint
2025-01-24 13:51:16 -08:00
Vadym Barda and GitHub
6926c4bcc0
langgraph: add names for tasks ( #3202 )
2025-01-24 21:42:54 +00:00
Nuno Campos
c04802a344
Fix type hints for entrypoint decorator
2025-01-24 09:31:27 -08:00
Nuno Campos and GitHub
cf7f6691cf
Improve typings for task, it now returns a mixed sync/async future protocol ( #3186 )
...
- note this type is never instantiated, it is only used for typing (we
cannot make it a protocol as it inherits from concurrent.futures.Future)
2025-01-24 09:19:51 -08:00
Eugene Yurtsev and GitHub
ae8afb7677
reference: document entrypoint more ( #3189 )
...
add more documentation to the entrypoint primitive
2025-01-23 22:17:20 -05:00
Nuno Campos
996b120613
Undo
2025-01-23 16:59:27 -08:00
Nuno Campos
1093dd55c8
Improve typings for task, it now returns a mixed sync/async future protocol
...
- note this type is never instantiated, it is only used for typing (we cannot make it a protocol as it inherits from concurrent.futures.Future)
2025-01-23 16:57:34 -08:00
Nuno Campos
6948cf5eb8
Undo change to test watch mode
2025-01-23 16:18:53 -08:00
Nuno Campos
f014d96d1c
Remove implementation of get_graph for @entrypoint
2025-01-23 15:39:36 -08:00
Vadym Barda and GitHub
1e61ddfdbe
langgraph: release 0.2.67 ( #3182 )
2025-01-23 18:01:43 -05:00
Vadym Barda and GitHub
06823e327f
langgraph: update docstrings/api ref for functional api ( #3176 )
2025-01-23 16:48:55 -05:00
Vadym Barda and GitHub
1059ef55d1
langgraph: handle node return annotations with unions ( #3170 )
2025-01-23 14:41:22 -05:00
39552255c8
langgraph: add support for BaseModel updates to Command ( #2747 )
...
Simple update that adds support for the `update` attribute of the
`Command` class to support Pydantic `BaseModel` type.
LangGraph already supports [Pydantic models for graph
states](https://langchain-ai.github.io/langgraph/how-tos/state-model/ ).
Extending support to the `update` attribute allows users to pass custom
BaseModel instances. Additionally, updates defined as `BaseModel` types
are type-validated when created.
https://github.com/langchain-ai/langgraph/issues/2804
---------
Co-authored-by: vbarda <vadym@langchain.dev >
2025-01-23 14:31:44 -05:00
Vadym Barda and GitHub
38bbe67469
langgraph: remove print ( #3167 )
2025-01-23 11:24:18 -05:00
Nuno Campos and GitHub
6335963674
Make scratchpad counters thread-safe ( #3158 )
...
- Same solution as used in python stdlib to name threads and asyncio
tasks
2025-01-23 07:37:04 -08:00
Nuno Campos
8a4c452317
Make test less flaky
2025-01-23 07:27:34 -08:00
Eugene Yurtsev and GitHub
5dc5853161
Add entrypoint.final to decouple return value from save value ( #3135 )
...
* Introduce `entrypoint.final` that allows decoupling what's returned
from the state update.
* moving decorator to class object w/ call to support defining `final`
as a property on it -- this should play nicely w/ IDE tooling / type
checking.
```python
previous_ = None
@entrypoint(checkpointer=MemorySaver())
def foo(msg: str, *, previous: Any) -> entrypoint.final[int, list[str]]:
nonlocal previous_
previous_ = previous
previous = previous or []
return entrypoint.final(value=len(previous), save=previous + [msg])
assert foo.get_output_schema().model_json_schema() == {
"title": "LangGraphOutput",
"type": "integer",
}
config = {"configurable": {"thread_id": "1"}}
assert foo.invoke("hello", config) == 0
assert previous_ is None
assert foo.invoke("goodbye", config) == 1
assert previous_ == ["hello"]
assert foo.invoke("definitely", config) == 2
assert previous_ == ["hello", "goodbye"]
```
2025-01-23 10:18:23 -05:00
Vadym Barda and GitHub
9e066554ba
langgraph: allow async state modifier in create_react_agent ( #3161 )
...
Fixes https://github.com/langchain-ai/langgraph/issues/2875
2025-01-23 09:29:25 -05:00
Tat Dat Duong
6ce9354ee4
fix: missing pgvector in CLI
...
Fixes https://github.com/langchain-ai/langgraph/issues/3164
2025-01-23 15:27:39 +01:00
Nuno Campos
211fd4337d
Undo
2025-01-22 16:44:13 -08:00
Nuno Campos
44bf97ac0e
Fix
2025-01-22 16:32:59 -08:00
Nuno Campos
23c73ae719
Update tests
2025-01-22 16:30:43 -08:00
Nuno Campos
c43a9a4bd0
Make scratchpad counters thread-safe
...
- Same solution as used in python stdlib to name threads and asyncio tasks
2025-01-22 16:07:59 -08:00
Nuno Campos
c9613927dc
Lint
2025-01-22 16:05:34 -08:00
Nuno Campos
c697c2aa04
Undo
2025-01-22 16:02:09 -08:00
Nuno Campos
3f2557c9c9
Fix
2025-01-22 16:02:09 -08:00
Nuno Campos
cbad17fa7d
Fix
2025-01-22 16:02:09 -08:00
Nuno Campos
17dacb83a2
Fix
2025-01-22 16:02:09 -08:00
Nuno Campos
3a997be088
Fix
2025-01-22 16:02:09 -08:00
Chester Curme and Nuno Campos
020d10138d
add test case
2025-01-22 16:02:09 -08:00
Nuno Campos
b704cf30cc
Lint
2025-01-22 11:34:30 -08:00
Nuno Campos
3915b44180
Format
2025-01-22 11:32:09 -08:00
Nuno Campos
ac1407b23c
Remove write to RETURN channel for entrypoint func
2025-01-22 09:44:52 -08:00
Nuno Campos
12ae297194
Disable recursing on runnables for task/entrypoint decorated funcs
2025-01-21 15:36:09 -08:00
Nuno Campos
0177565c6b
Spell check
2025-01-21 15:14:00 -08:00
Bhavya Dhiman and GitHub
c48d495031
fix(requirements.txt): Set requirements path to posix expression so that it can work in windows OS as well. ( #3101 )
...
When I cloned langgraph example, I was not able to run the code because
of the requirements.txt file. The path was set to posix expression which
was not working in windows OS.
I have updated the path to posix expression so that it can work in
windows OS as well.
Try running `langgraph-example` in windows using the langgraph-cli in
windows OS. It was working for linux not in windows.
2025-01-21 14:30:13 -05:00
Vadym Barda and GitHub
22e6468af5
langgraph: release 0.2.66 ( #3128 )
2025-01-21 13:26:29 -05:00
ccurme and GitHub
24bc0c0630
docs: update readme / docs intro page ( #3082 )
2025-01-21 13:19:30 -05:00
Nuno Campos and GitHub
802e6df8df
Enable async tests that were being skipped ( #3109 )
...
- async tests are placed in test_pregel_async, not in test_pregel
- to avoid tests placed in wrong file being accidentally skipped i've
added the auto-async mark to sync test file
2025-01-21 10:16:20 -08:00
Nuno Campos and GitHub
3ec55b008d
Fix timing issue where a sync task would finish before the other one was registered in futures dict ( #3110 )
...
- this was not possible in async where all done callbacks are called in
next tick
- in sync case this would manifest as the first task done callback
seeing counter == 1 and thus setting event
- the fix is to unset the event whenever a task is scheduled
2025-01-21 10:16:09 -08:00
Nuno Campos and GitHub
e10b7c1391
Re-enable support for running sync tasks from async entrypoints ( #3108 )
...
- When using an async entrypoint you can now freely mix and match sync
and async tasks with a uniform api (ie all tasks return a sync or async
future depending on context)
- Fix issues with scheduling deeply nested tasks (use threadsafe methods
to schedule coroutines and create futures)
2025-01-21 10:15:49 -08:00
Nuno Campos and GitHub
31cc6b9f1d
Fix tracing of args for @task decorated functions ( #3107 )
...
- now using same logic as in langsmith sdk, treating as single args
dict, based on function signature
2025-01-21 10:09:13 -08:00
Nuno Campos
2cafb4905b
Lint
2025-01-21 10:06:02 -08:00
Nuno Campos
fe46576d98
Fix
2025-01-21 09:59:49 -08:00
Nuno Campos
16c86c9de6
Add test
2025-01-21 09:49:46 -08:00