From de578f6028a724182556177c12b7d5b3a69db527 Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Thu, 2 Oct 2025 11:13:53 -0400 Subject: [PATCH] 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 5bb23c575..214db1100 100644 --- a/src/oss/langchain/quickstart.mdx +++ b/src/oss/langchain/quickstart.mdx @@ -175,7 +175,7 @@ Let's walk through each step: return "Florida" if user_id == "1" else "SF" ``` - + 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.