Skip to content

Commit

Permalink
Fix duplicate words in Airtable Agent description (FlowiseAI#3368)
Browse files Browse the repository at this point in the history
  • Loading branch information
robhitt authored Oct 17, 2024
1 parent 5117948 commit de6d675
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion packages/components/nodes/agents/CSVAgent/CSVAgent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
{
Expand Down
4 changes: 2 additions & 2 deletions packages/server/marketplaces/chatflows/CSV Agent.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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"
}
],
Expand Down

0 comments on commit de6d675

Please sign in to comment.