mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 11:00:55 +03:00
Fix duplicate words in Airtable Agent description (#3368)
This commit is contained in:
@@ -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',
|
||||
|
||||
@@ -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 = [
|
||||
{
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user