From fb5352231152490f5d11f7e766a6e34616ce707e Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Fri, 16 Jun 2023 12:13:04 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20chore(custom.py):=20rename=20"in?= =?UTF-8?q?itialize=5Fagent"=20to=20"AgentInitializer"=20in=20CUSTOM=5FAGE?= =?UTF-8?q?NTS=20dictionary=20The=20"initialize=5Fagent"=20key=20in=20the?= =?UTF-8?q?=20CUSTOM=5FAGENTS=20dictionary=20has=20been=20renamed=20to=20"?= =?UTF-8?q?AgentInitializer"=20to=20improve=20naming=20consistency=20with?= =?UTF-8?q?=20the=20other=20agents=20in=20the=20dictionary.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/backend/langflow/interface/agents/custom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/langflow/interface/agents/custom.py b/src/backend/langflow/interface/agents/custom.py index 2db70b341..2b0cd98e0 100644 --- a/src/backend/langflow/interface/agents/custom.py +++ b/src/backend/langflow/interface/agents/custom.py @@ -302,7 +302,7 @@ class InitializeAgent(CustomAgentExecutor): CUSTOM_AGENTS = { "JsonAgent": JsonAgent, "CSVAgent": CSVAgent, - "initialize_agent": InitializeAgent, + "AgentInitializer": InitializeAgent, "VectorStoreAgent": VectorStoreAgent, "VectorStoreRouterAgent": VectorStoreRouterAgent, "SQLAgent": SQLAgent,