From 101d4a96b6a0d3b3c1f0e8e4c2896dc9846aaacf Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 7 Oct 2025 09:42:28 +0300 Subject: [PATCH 1/3] fix: correct links in quickstart guide of LangChain --- build/oss/python/langchain/quickstart.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/oss/python/langchain/quickstart.mdx b/build/oss/python/langchain/quickstart.mdx index c26f88141..04534acbc 100644 --- a/build/oss/python/langchain/quickstart.mdx +++ b/build/oss/python/langchain/quickstart.mdx @@ -94,7 +94,7 @@ Let's walk through each step: [Tools](/oss/python/langchain/tools) let a model interact with external systems by calling functions you define. - Tools can depend on [runtime context](/oss/python/langchain/runtime) and also interact with [agent memory](/oss/python/langchain/memory). + Tools can depend on [runtime context](/oss/python/langchain/runtime) and also interact with [agent memory](/oss/python/langchain/short-term-memory). Notice below how the `get_user_location` tool uses runtime context: @@ -120,7 +120,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.base.tool.html#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](oss/python/langchain/tools#basic-tool-definition) decorator is often used to add extra metadata. @@ -178,7 +178,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/python/langgraph/add-memory) for more details. + See [add and manage memory](oss/python/langchain/short-term-memory#in-production) for more details. From 4860412e36e6d8b8ca836c80be83c9826d352006 Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Tue, 7 Oct 2025 12:50:19 -0400 Subject: [PATCH 2/3] Apply suggestion from @eyurtsev --- build/oss/python/langchain/quickstart.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/oss/python/langchain/quickstart.mdx b/build/oss/python/langchain/quickstart.mdx index 04534acbc..0dc2cf61c 100644 --- a/build/oss/python/langchain/quickstart.mdx +++ b/build/oss/python/langchain/quickstart.mdx @@ -120,7 +120,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](oss/python/langchain/tools#basic-tool-definition) decorator is often used to add extra metadata. + We've defined them here as plain Python functions, but LangChain's [@tool](/oss/python/langchain/tools#basic-tool-definition) decorator is often used to add extra metadata. From 0abcde5a557fadc864b1c649f3dc63b286c2ce18 Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Tue, 7 Oct 2025 12:50:25 -0400 Subject: [PATCH 3/3] Apply suggestion from @eyurtsev --- build/oss/python/langchain/quickstart.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/oss/python/langchain/quickstart.mdx b/build/oss/python/langchain/quickstart.mdx index 0dc2cf61c..b01625f79 100644 --- a/build/oss/python/langchain/quickstart.mdx +++ b/build/oss/python/langchain/quickstart.mdx @@ -178,7 +178,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/langchain/short-term-memory#in-production) for more details. + See [add and manage memory](/oss/python/langchain/short-term-memory#in-production) for more details.