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.