From 44943d225a06a64a0463ffc19540e72839c77e60 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Thu, 6 Jul 2023 17:21:03 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20refactor(customs.py):=20comment?= =?UTF-8?q?=20out=20unused=20ZeroShotPrompt=20in=20CUSTOM=5FNODES=20dictio?= =?UTF-8?q?nary=20The=20ZeroShotPrompt=20node=20in=20the=20CUSTOM=5FNODES?= =?UTF-8?q?=20dictionary=20is=20currently=20not=20being=20used=20and=20com?= =?UTF-8?q?mented=20out=20for=20clarity=20and=20to=20improve=20code=20read?= =?UTF-8?q?ability.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/backend/langflow/custom/customs.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/backend/langflow/custom/customs.py b/src/backend/langflow/custom/customs.py index 0f1e44308..bbafb4526 100644 --- a/src/backend/langflow/custom/customs.py +++ b/src/backend/langflow/custom/customs.py @@ -2,9 +2,9 @@ from langflow.template import frontend_node # These should always be instantiated CUSTOM_NODES = { - "prompts": { - "ZeroShotPrompt": frontend_node.prompts.ZeroShotPromptNode(), - }, + # "prompts": { + # "ZeroShotPrompt": frontend_node.prompts.ZeroShotPromptNode(), + # }, "tools": { "PythonFunctionTool": frontend_node.tools.PythonFunctionToolNode(), "PythonFunction": frontend_node.tools.PythonFunctionNode(),