From 9bac61b563bf33fb9c477ad8d718b6fbd033a8ca Mon Sep 17 00:00:00 2001 From: Gabriel Almeida Date: Mon, 29 May 2023 07:30:58 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20feat(config.yaml):=20add=20new?= =?UTF-8?q?=20text=20splitters=20and=20toolkits=20Added=20new=20text=20spl?= =?UTF-8?q?itters=20to=20the=20configuration=20file:=20RecursiveCharacterT?= =?UTF-8?q?extSplitter,=20LatexTextSplitter,=20and=20PythonCodeTextSplitte?= =?UTF-8?q?r.=20These=20text=20splitters=20will=20be=20used=20to=20split?= =?UTF-8?q?=20text=20into=20smaller=20chunks=20for=20processing.=20Also,?= =?UTF-8?q?=20added=20new=20toolkits=20to=20the=20configuration=20file:=20?= =?UTF-8?q?OpenAPIToolkit=20and=20JsonToolkit.=20These=20toolkits=20will?= =?UTF-8?q?=20be=20used=20to=20process=20the=20text=20chunks=20generated?= =?UTF-8?q?=20by=20the=20text=20splitters.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/backend/langflow/config.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/backend/langflow/config.yaml b/src/backend/langflow/config.yaml index 6dadc7a88..23cf2b6f2 100644 --- a/src/backend/langflow/config.yaml +++ b/src/backend/langflow/config.yaml @@ -63,6 +63,9 @@ prompts: - ZeroShotPrompt textsplitters: - CharacterTextSplitter + - RecursiveCharacterTextSplitter + - LatexTextSplitter + - PythonCodeTextSplitter toolkits: - OpenAPIToolkit - JsonToolkit