From 35dce224d74292ba500d2d36d26c1633db46c55f Mon Sep 17 00:00:00 2001 From: Gabriel Almeida Date: Sat, 27 May 2023 14:24:19 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20docs(nodes.py):=20update=20SQLAg?= =?UTF-8?q?entNode=20description=20to=20reflect=20its=20new=20implementati?= =?UTF-8?q?on=20The=20description=20of=20the=20SQLAgentNode=20has=20been?= =?UTF-8?q?=20updated=20to=20reflect=20its=20new=20implementation,=20which?= =?UTF-8?q?=20now=20constructs=20a=20SQL=20agent=20from=20an=20LLM=20and?= =?UTF-8?q?=20tools=20instead=20of=20a=20Vector=20Store=20Router.=20This?= =?UTF-8?q?=20change=20was=20made=20to=20improve=20the=20accuracy=20of=20t?= =?UTF-8?q?he=20description=20and=20to=20better=20reflect=20the=20function?= =?UTF-8?q?ality=20of=20the=20node.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/backend/langflow/template/nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/langflow/template/nodes.py b/src/backend/langflow/template/nodes.py index d19cae612..9b31bf884 100644 --- a/src/backend/langflow/template/nodes.py +++ b/src/backend/langflow/template/nodes.py @@ -495,7 +495,7 @@ class SQLAgentNode(FrontendNode): ), ], ) - description: str = """Construct an agent from a Vector Store Router.""" + description: str = """Construct a sql agent from an LLM and tools.""" base_classes: list[str] = ["AgentExecutor"] def to_dict(self):