From de6d675e5548831d4bc94f7b5f50c88d02835684 Mon Sep 17 00:00:00 2001 From: Rob Hitt Date: Wed, 16 Oct 2024 21:00:01 -0400 Subject: [PATCH] Fix duplicate words in Airtable Agent description (#3368) --- .../components/nodes/agents/AirtableAgent/AirtableAgent.ts | 2 +- packages/components/nodes/agents/CSVAgent/CSVAgent.ts | 2 +- packages/server/marketplaces/chatflows/CSV Agent.json | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/components/nodes/agents/AirtableAgent/AirtableAgent.ts b/packages/components/nodes/agents/AirtableAgent/AirtableAgent.ts index e6428f14b7d..519ec99d01f 100644 --- a/packages/components/nodes/agents/AirtableAgent/AirtableAgent.ts +++ b/packages/components/nodes/agents/AirtableAgent/AirtableAgent.ts @@ -28,7 +28,7 @@ class Airtable_Agents implements INode { this.type = 'AgentExecutor' this.category = 'Agents' this.icon = 'airtable.svg' - this.description = 'Agent used to to answer queries on Airtable table' + this.description = 'Agent used to answer queries on Airtable table' this.baseClasses = [this.type, ...getBaseClasses(AgentExecutor)] this.credential = { label: 'Connect Credential', diff --git a/packages/components/nodes/agents/CSVAgent/CSVAgent.ts b/packages/components/nodes/agents/CSVAgent/CSVAgent.ts index b0bc0eabe81..39dd9aaea9d 100644 --- a/packages/components/nodes/agents/CSVAgent/CSVAgent.ts +++ b/packages/components/nodes/agents/CSVAgent/CSVAgent.ts @@ -27,7 +27,7 @@ class CSV_Agents implements INode { this.type = 'AgentExecutor' this.category = 'Agents' this.icon = 'CSVagent.svg' - this.description = 'Agent used to to answer queries on CSV data' + this.description = 'Agent used to answer queries on CSV data' this.baseClasses = [this.type, ...getBaseClasses(AgentExecutor)] this.inputs = [ { diff --git a/packages/server/marketplaces/chatflows/CSV Agent.json b/packages/server/marketplaces/chatflows/CSV Agent.json index 3c04a2a3f1f..120c98e13e1 100644 --- a/packages/server/marketplaces/chatflows/CSV Agent.json +++ b/packages/server/marketplaces/chatflows/CSV Agent.json @@ -243,7 +243,7 @@ "type": "AgentExecutor", "baseClasses": ["AgentExecutor", "BaseChain", "Runnable"], "category": "Agents", - "description": "Agent used to to answer queries on CSV data", + "description": "Agent used to answer queries on CSV data", "inputParams": [ { "label": "Csv File", @@ -301,7 +301,7 @@ "id": "csvAgent_0-output-csvAgent-AgentExecutor|BaseChain|Runnable", "name": "csvAgent", "label": "AgentExecutor", - "description": "Agent used to to answer queries on CSV data", + "description": "Agent used to answer queries on CSV data", "type": "AgentExecutor | BaseChain | Runnable" } ],