From ac43e3bdb67a1b8dc450c6d9e35e52a50fcc2298 Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Tue, 7 Oct 2025 17:26:17 -0400 Subject: [PATCH 1/3] x --- src/oss/langchain/quickstart.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/oss/langchain/quickstart.mdx b/src/oss/langchain/quickstart.mdx index 9f2b5eef1..67e09bf3f 100644 --- a/src/oss/langchain/quickstart.mdx +++ b/src/oss/langchain/quickstart.mdx @@ -151,7 +151,7 @@ Let's walk through each step: :::python [Tools](/oss/langchain/tools) let a model interact with external systems by calling functions you define. - Tools can depend on [runtime context](/oss/langchain/runtime) and also interact with [agent memory](/oss/langchain/memory). + Tools can depend on [runtime context](/oss/langchain/runtime) and also interact with [agent memory](/oss/langchain/short-term-memory). Notice below how the `get_user_location` tool uses runtime context: @@ -177,7 +177,7 @@ Let's walk through each step: Tools should be well-documented: their name, description, and argument names become part of the model's prompt. - We've defined them here as plain Python functions, but LangChain's @[@tool] decorator is often used to add extra metadata. + We've defined them here as plain Python functions, but LangChain's [@tool](https://python.langchain.com/api_reference/core/tools/langchain_core.tools.convert.tool.html) decorator is often used to add extra metadata. ::: @@ -322,7 +322,7 @@ Let's walk through each step: In production, use a persistent checkpointer that saves to a database. - See [add and manage memory](/oss/python/langgraph/add-memory) for more details. + See [add and manage memory](/oss/python/langchain/short-term-memory#in-production) for more details. From a1c3565c62d674da584f95033430209fefbc2f2b Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Tue, 7 Oct 2025 17:28:32 -0400 Subject: [PATCH 2/3] x --- pipeline/preprocessors/link_map.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline/preprocessors/link_map.py b/pipeline/preprocessors/link_map.py index 11e2ad43e..79f6f9dd7 100644 --- a/pipeline/preprocessors/link_map.py +++ b/pipeline/preprocessors/link_map.py @@ -147,7 +147,7 @@ class LinkMap(TypedDict): "Document": "core/documents/langchain_core.documents.base.Document.html", "init_chat_model": "langchain/chat_models/langchain.chat_models.base.init_chat_model.html", "RunnableConfig": "core/runnables/langchain_core.runnables.config.RunnableConfig.html", - "@tool": "core/tools/langchain_core.tools.base.tool.html#langchain_core.tools.convert.tool.html", + "@tool": "core/tools/langchain_core.tools.convert.tool.html", "Embeddings": "core/embeddings/langchain_core.embeddings.embeddings.Embeddings.html", }, }, From cb82195503ebbbc9566f001eed6dbdd57ba82a3e Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Tue, 7 Oct 2025 17:28:53 -0400 Subject: [PATCH 3/3] x --- src/oss/langchain/quickstart.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/oss/langchain/quickstart.mdx b/src/oss/langchain/quickstart.mdx index 67e09bf3f..db5fed769 100644 --- a/src/oss/langchain/quickstart.mdx +++ b/src/oss/langchain/quickstart.mdx @@ -177,7 +177,7 @@ Let's walk through each step: Tools should be well-documented: their name, description, and argument names become part of the model's prompt. - We've defined them here as plain Python functions, but LangChain's [@tool](https://python.langchain.com/api_reference/core/tools/langchain_core.tools.convert.tool.html) decorator is often used to add extra metadata. + We've defined them here as plain Python functions, but LangChain's @[@tool] decorator is often used to add extra metadata. :::