Vadym Barda and GitHub
8a0650a46b
sdk-py: update docstrings ( #2221 )
2024-10-29 20:31:12 +00:00
Vadym Barda and GitHub
e7dc43b7ca
langgraph: validate sync/async clients initialized correctly in RemoteGraph ( #2214 )
2024-10-29 13:21:10 -04:00
Nuno Campos
90195af1d8
sdk-py 0.1.35
sdk==0.1.35
2024-10-28 15:22:05 -07:00
Nuno Campos
da707343dc
sdk-js 0.0.19
2024-10-28 15:21:57 -07:00
Nuno Campos and GitHub
1f5fc505c6
Merge pull request #2204 from langchain-ai/nc/28oct/sdk-wait-raise-error
...
sdk: By default raise errors in /wait endpoint
2024-10-28 14:46:14 -07:00
Nuno Campos
4c655f841e
Lint
2024-10-28 14:40:25 -07:00
Nuno Campos
be27c96f3c
sdk: By default raise errors in /wait endpoint
2024-10-28 14:27:13 -07:00
eric-langchain and GitHub
5090e30f71
Merge pull request #2185 from langchain-ai/update-docs-for-homepage-redesign
...
home page redesign docs
2024-10-28 11:47:34 -05:00
Lance Martin and GitHub
688de89864
Fix link that is causing docs build to fail ( #2194 )
2024-10-25 23:34:08 +00:00
Lance Martin and GitHub
62444d4c63
Update memory concept doc ( #2181 )
...
Add content on [memory
types](https://blog.langchain.dev/memory-for-agents/ ).
2024-10-25 14:08:04 -07:00
Eugene Yurtsev and GitHub
4a970cca8b
docs: update main site layout ( #2191 )
...
* Remove land hand sidebar on most pages
* Cleans up some headings
* Adds error reference information to index (it was already on the
sidebar for the how-to page) -- should probably be its own tab?
* Adds an index page for the reference (so it's easier to link to a main
reference page), alternatively we can set up a redirect from index to
graph
2024-10-25 16:49:31 -04:00
Eugene Yurtsev and GitHub
18b9135770
docs: update tutorials index page ( #2190 )
...
Minor formatting update -- since this section stands right now looks
quite bad
2024-10-25 18:08:21 +00:00
David Duong and GitHub
d266ddb312
Merge pull request #2167 from langchain-ai/dqbd/sdk-js-timeout
...
feat(sdk-js): implement abort signal timeout, make default timeout for runs 5 minutes
sdk==0.1.34
2024-10-25 15:40:30 +02:00
Tat Dat Duong
7a348ac19c
Don't enforce timeouts for run stream / block endpoints
2024-10-25 15:34:36 +02:00
Eric han
123d93539a
some more spots
2024-10-24 17:14:02 -05:00
Eric han
785e7dab3a
home page redesign docs
2024-10-24 17:04:20 -05:00
Vadym Barda and GitHub
582fb11dd4
checkpoint-sqlite: release 2.0.1 ( #2184 )
checkpointsqlite==2.0.1
2024-10-24 17:08:25 -04:00
Vadym Barda and GitHub
39d9cdbef0
checkpoint-postgres: release 2.0.2 ( #2183 )
checkpointpostgres==2.0.2
2024-10-24 17:06:36 -04:00
Vadym Barda and GitHub
6dacd1aabe
langgraph: always raise NodeInterrupt in ToolNode if raised from a tool ( #2175 )
2024-10-24 18:21:18 +00:00
Vadym Barda and GitHub
91ad8b803b
checkpoint-duckdb: release 2.0.1 ( #2180 )
checkpointduckdb==2.0.1
2024-10-24 13:58:48 -04:00
Vadym Barda and GitHub
a0e99f704f
checkpoint: release 2.0.2 ( #2179 )
checkpoint==2.0.2
2024-10-24 13:52:02 -04:00
Vadym Barda and GitHub
def3e06b4a
move py.typed to submodules for namespace packages ( #2177 )
2024-10-24 13:43:43 -04:00
David Duong and GitHub
a4fab2a867
Merge pull request #2178 from langchain-ai/dqbd/sdk-bump-24oct
...
feat(sdk): bump SDK to js@0.0.18 and py@0.1.34
2024-10-24 18:58:07 +02:00
Tat Dat Duong
cf1c7f3673
feat(sdk): bump SDK to js@0.0.18 and py@0.1.34
2024-10-24 18:51:56 +02:00
Nuno Campos and GitHub
6c05b66c7c
Merge pull request #2176 from langchain-ai/dqbd/error-thread-state
...
fix(sdk): add error thread state
2024-10-24 09:23:20 -07:00
Tat Dat Duong
5c44dcef81
fix(sdk): add error thread state
2024-10-24 18:16:21 +02:00
Nuno Campos
7fd6b1b4be
Fix
2024-10-24 08:48:46 -07:00
Vadym Barda and GitHub
6202e0f1d9
docs: update branching how-to notebook ( #2174 )
2024-10-24 14:56:19 +00:00
Tat Dat Duong
ccfeafa975
feat(sdk-js): implement abort signal timeout, make default timeout for runs 5 minutes
2024-10-24 09:38:42 +02:00
Nuno Campos and GitHub
83238f51d8
Merge pull request #2166 from langchain-ai/nc/23oct/remote-graph-interop
...
Interop of RemoteGraph w core lib
2024-10-23 20:36:38 -07:00
Nuno Campos
05f008cbfb
Lint
2024-10-23 20:30:32 -07:00
Nuno Campos
a8ae2a52a3
Lint
2024-10-23 20:27:18 -07:00
Nuno Campos
aa245a8e71
Fix up
2024-10-23 20:22:04 -07:00
bdc75a22d5
langgraph: expand handle_tool_errors in ToolNode ( #1667 )
...
This change expands error-handling functionality of the `ToolNode` by
introducing more options for `handle_tool_errors`. Default behavior of
the `ToolNode` is unchanged -- all errors are handled and wrapped in a
`ToolMessage` to be sent back to LLM.
With this change, users have flexibility to only handle the exceptions
that they need to pass back to the LLM:
* they can specify exceptions to handle by passing a tuple of exceptions
in `handle_tool_errors`
* specify `handle_tool_errors=True/str/callable`
* when `handle_tool_errors` is a callable, the signature will be
inspected and exceptions from the signature will be handled
---------
Co-authored-by: vbarda <vadym@langchain.dev >
2024-10-24 00:58:05 +00:00
Nuno Campos
69227daff3
Lint
2024-10-23 17:01:58 -07:00
Nuno Campos
dc8260bb72
Interop of RemoteGraph w core lib
2024-10-23 15:37:17 -07:00
Vadym Barda and GitHub
62a5ec509d
checkpoint: add DuckDB store ( #2154 )
checkpointduckdb==2.0.0
2024-10-23 22:20:10 +00:00
Vadym Barda and GitHub
d32386f849
checkpoint: add DuckDB checkpointer ( #2145 )
2024-10-23 21:11:03 +00:00
Nuno Campos and GitHub
08a1ed38f1
Merge pull request #2092 from langchain-ai/an/11oct/remote-graph-interrupt
...
Update `stream()` and `astream()` methods in `RemoteGraph` to process `updates` event types
2024-10-23 13:48:43 -07:00
Nuno Campos
037a95ff60
Update tests
2024-10-23 13:43:48 -07:00
Nuno Campos
e294720ec5
Lint
2024-10-23 13:29:59 -07:00
Nuno Campos
f8a0b7a464
Use if_not_exists
2024-10-23 13:24:19 -07:00
Nuno Campos
1121806ba4
Add if_not_exists
2024-10-23 13:23:49 -07:00
Nuno Campos
dca200d6c4
Finish
2024-10-23 13:23:42 -07:00
Vadym Barda and GitHub
6f236b5f2c
docs: update multi-agent concept examples ( #2151 )
2024-10-23 13:40:24 -04:00
Vadym Barda and GitHub
916affa1b5
langgraph: add 'messages_key' param to ToolNode / tools_condition ( #2049 )
2024-10-22 17:32:05 -04:00
Nuno Campos
58cf0c6a6e
chore: Switch s3 client utils from httpx client to curl client
2024-10-22 10:46:37 -07:00
gbaian10 and GitHub
0042889c31
Support read type hints from the method in add_node ( #2014 )
...
Add function to read type hints from the `__call__` method to resolve issue #1950 .
2024-10-22 17:11:59 +00:00
nikhildigde and GitHub
2be012d8ed
docs: fix typo in concept docs
2024-10-21 21:40:47 +00:00
Yuki Oshima and GitHub
780285ef91
Fix(docs): InMemoryStore example error ( #2148 )
2024-10-21 18:39:43 +00:00