Eugene Yurtsev
9615580a66
x
2024-12-16 17:55:29 -05:00
Eugene Yurtsev
d45eb0f9f2
x
2024-12-16 17:49:38 -05:00
Tat Dat Duong
f5663ffa49
docs: update studio index to add datasets
2024-12-16 16:44:43 +01:00
David Duong and GitHub
e7477a9315
Merge pull request #2680 from langchain-ai/dqbd/add-to-dataset-docs
...
feat(studio): add Add to Dataset docs
2024-12-16 19:31:49 +04:00
Tat Dat Duong
18c083b60a
Use S3 for assets
2024-12-16 16:24:05 +01:00
Vadym Barda and GitHub
2f0e3c66d1
docs: update structured output how-to guide ( #2773 )
...
Fixes #2760
2024-12-16 09:51:12 -05:00
Zapiron and GitHub
d9ec185e72
docs: Update correct ID for initial ToolNode hyperlink ( #2767 )
...
Automatically leads to the correct `ToolNode` section instead of the top
2024-12-16 09:15:34 -05:00
Eugene Yurtsev and GitHub
89eb938b30
docs: fix typo in example
...
Fix typo in thread config
2024-12-13 12:47:30 -05:00
Eugene Yurtsev
26e97492b7
add missing thread config
2024-12-13 12:39:26 -05:00
Vadym Barda and GitHub
4c3958f0be
docs: update custom tool call snippet ( #2754 )
2024-12-13 09:42:13 -05:00
980b592631
Fixed the code snippet in the Update State From Tools tutorial ( #2752 )
...
Hi,
While reading the [update state from
tools](https://langchain-ai.github.io/langgraph/how-tos/update-state-from-tools/ )
tutorial. I noticed that this code snippet contains a syntax error:
```python
def call_tools(state):
...
commands = [tools_by_name[call["name"].invoke(call, config={"coerce_tool_content": False}) for tool_call in tool_calls]
return commands
```
There is a missing closing bracket `]` in the list comprehension.
Additionally, the variable `call` inside the list comprehension is
undefined, it should be `tool_call`.
Here is a corrected version of the code:
```python
def call_tools(state):
...
commands = [tools_by_name[tool_call["name"]].invoke(tool_call, config={"coerce_tool_content": False}) for tool_call in tool_calls]
return commands
```
---------
Co-authored-by: Vadym Barda <vadim.barda@gmail.com >
2024-12-13 09:40:18 -05:00
Imad Saddik and GitHub
e494869c72
Fixed the documentation for the persistence concept ( #2750 )
...
Hi,
I was reading the
[persistence](https://langchain-ai.github.io/langgraph/concepts/persistence/#update-state )
concept in LangGraph and found a sentence with a missing verb, so I
fixed it.
2024-12-13 09:38:17 -05:00
da0aac7556
Updating MongoDB checkpointer docs ( #2743 )
...
This PR updates the [How-to
guide](https://langchain-ai.github.io/langgraph/how-tos/persistence_mongodb/ )
on using the MongoDB checkpointer.
The guide currently explains how to create a custom MongoDB
checkpointer, but we now have a checkpointer implementation available
via the `langgraph-checkpoint-mongodb` library. This PR updates the
current resource to guide users on how to use this implementation.
---------
Co-authored-by: ajosh0504 <apoorva.joshi@mongodb.com >
Co-authored-by: vbarda <vadym@langchain.dev >
2024-12-12 15:31:57 -05:00
Eugene Yurtsev
33af251a09
x
2024-12-12 14:01:33 -05:00
Eugene Yurtsev and GitHub
17dc588c81
docs: concepts HIL add example w/ subgraph call
...
Add an example with subgraph call to illustrate the flow
2024-12-12 12:02:36 -05:00
Eugene Yurtsev
258060593b
x
2024-12-12 11:54:04 -05:00
Vadym Barda and GitHub
fbe513835f
docs: update type annotations ( #2739 )
2024-12-12 11:53:55 -05:00
Eugene Yurtsev
f319b1e107
x
2024-12-12 11:50:09 -05:00
Vadym Barda and GitHub
083a14c2c5
docs: update how-to to remove agent wrapper ( #2721 )
2024-12-12 08:15:17 -05:00
Vadym Barda and GitHub
0400c5236e
docs: update redis how-to ( #2727 )
...
Fixes #2712
2024-12-11 23:22:47 +00:00
Vadym Barda and GitHub
67f96063e2
docs: update min lib version for howto ( #2726 )
2024-12-11 17:11:57 -05:00
Andrew Nguonly and GitHub
ff3bc2f982
docs: Add details about Cloud SaaS deployment time ( #2722 )
2024-12-11 13:19:19 -08:00
William FH and GitHub
fe83a151bb
Merge branch 'main' into wfh/docs/missing_backticks
2024-12-11 12:34:38 -08:00
William Fu-Hinthorn
d18c9449ec
[docs] Add missing backicks
2024-12-11 12:33:33 -08:00
Eugene Yurtsev
189358cb91
one more link fix
2024-12-11 13:22:17 -05:00
Eugene Yurtsev and GitHub
d16004c0b6
Merge branch 'main' into eugene/document_interrupt
2024-12-11 13:14:01 -05:00
Eugene Yurtsev
d24ce62c3f
x
2024-12-11 13:10:42 -05:00
Eugene Yurtsev
3ffed8d38d
x
2024-12-11 13:08:57 -05:00
vbarda
25d4512744
update cassettes
2024-12-11 13:03:27 -05:00
Eugene Yurtsev
630195a108
fix one more link
2024-12-11 12:50:32 -05:00
Eugene Yurtsev
32702dea08
x
2024-12-11 12:42:54 -05:00
Eugene Yurtsev
3db266bb93
x
2024-12-11 12:41:03 -05:00
Eugene Yurtsev
11ce54d7e4
x
2024-12-11 12:39:53 -05:00
Eugene Yurtsev
54a5e45d21
x
2024-12-11 12:37:54 -05:00
vbarda
0ad470162c
fix links
2024-12-11 11:54:19 -05:00
Eugene Yurtsev
7f48428d16
x
2024-12-11 11:41:00 -05:00
Eugene Yurtsev
d9c0a5d827
x
2024-12-11 11:40:09 -05:00
Eugene Yurtsev
6907d1b775
x
2024-12-11 11:32:33 -05:00
Eugene Yurtsev and GitHub
bec3055561
Merge pull request #2714 from langchain-ai/eugene/add_more_hil_patterns
...
Beef up concept, remove how to
2024-12-11 11:09:05 -05:00
Eugene Yurtsev and GitHub
2f535a803c
Merge pull request #2716 from langchain-ai/eugene/document_command
...
concepts: document command as HIL
2024-12-11 11:08:57 -05:00
Eugene Yurtsev
fbb11a6d2e
x
2024-12-11 11:08:24 -05:00
Eugene Yurtsev
6b80fa6718
x
2024-12-11 11:02:28 -05:00
Eugene Yurtsev
82fa597e84
x
2024-12-11 10:58:58 -05:00
Eugene Yurtsev
f6c44ec154
x
2024-12-11 10:58:10 -05:00
vbarda
a03900be7a
minor fix
2024-12-11 09:56:20 -05:00
vbarda
7144f7db41
typos
2024-12-11 09:24:48 -05:00
Eugene Yurtsev
c2556aa2fe
x
2024-12-10 23:54:15 -05:00
Eugene Yurtsev
6153c777fb
x
2024-12-10 23:24:26 -05:00
Eugene Yurtsev
a4d49b4e77
x
2024-12-10 23:23:58 -05:00
Eugene Yurtsev
789c732866
x
2024-12-10 22:52:17 -05:00