From cc50e023d1ef7cabbc44e89d95e5ae5c4811c782 Mon Sep 17 00:00:00 2001 From: Leonid Ganeline Date: Sun, 19 Nov 2023 17:30:05 -0800 Subject: [PATCH] DOCS `langchain decorators` update (#13535) added disclaimer --------- Co-authored-by: Erick Friis --- .../integrations/providers/langchain_decorators.mdx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/docs/docs/integrations/providers/langchain_decorators.mdx b/docs/docs/integrations/providers/langchain_decorators.mdx index cdd32abdae5..b93db6bb4ef 100644 --- a/docs/docs/integrations/providers/langchain_decorators.mdx +++ b/docs/docs/integrations/providers/langchain_decorators.mdx @@ -1,10 +1,13 @@ # LangChain Decorators ✨ -lanchchain decorators is a layer on the top of LangChain that provides syntactic sugar 🍭 for writing custom langchain prompts and chains - -For Feedback, Issues, Contributions - please raise an issue here: -[ju-bezdek/langchain-decorators](https://github.com/ju-bezdek/langchain-decorators) +~~~ +Disclaimer: `LangChain decorators` is not created by the LangChain team and is not supported by it. +~~~ +>`LangChain decorators` is a layer on the top of LangChain that provides syntactic sugar 🍭 for writing custom langchain prompts and chains +> +>For Feedback, Issues, Contributions - please raise an issue here: +>[ju-bezdek/langchain-decorators](https://github.com/ju-bezdek/langchain-decorators) Main principles and benefits: @@ -17,7 +20,6 @@ Main principles and benefits: - easily share parameters between the prompts by binding them to one class - Here is a simple example of a code written with **LangChain Decorators ✨** ``` python