mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-29 03:01:10 +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.type = 'AgentExecutor'
|
||||||
this.category = 'Agents'
|
this.category = 'Agents'
|
||||||
this.icon = 'airtable.svg'
|
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.baseClasses = [this.type, ...getBaseClasses(AgentExecutor)]
|
||||||
this.credential = {
|
this.credential = {
|
||||||
label: 'Connect Credential',
|
label: 'Connect Credential',
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ class CSV_Agents implements INode {
|
|||||||
this.type = 'AgentExecutor'
|
this.type = 'AgentExecutor'
|
||||||
this.category = 'Agents'
|
this.category = 'Agents'
|
||||||
this.icon = 'CSVagent.svg'
|
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.baseClasses = [this.type, ...getBaseClasses(AgentExecutor)]
|
||||||
this.inputs = [
|
this.inputs = [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -243,7 +243,7 @@
|
|||||||
"type": "AgentExecutor",
|
"type": "AgentExecutor",
|
||||||
"baseClasses": ["AgentExecutor", "BaseChain", "Runnable"],
|
"baseClasses": ["AgentExecutor", "BaseChain", "Runnable"],
|
||||||
"category": "Agents",
|
"category": "Agents",
|
||||||
"description": "Agent used to to answer queries on CSV data",
|
"description": "Agent used to answer queries on CSV data",
|
||||||
"inputParams": [
|
"inputParams": [
|
||||||
{
|
{
|
||||||
"label": "Csv File",
|
"label": "Csv File",
|
||||||
@@ -301,7 +301,7 @@
|
|||||||
"id": "csvAgent_0-output-csvAgent-AgentExecutor|BaseChain|Runnable",
|
"id": "csvAgent_0-output-csvAgent-AgentExecutor|BaseChain|Runnable",
|
||||||
"name": "csvAgent",
|
"name": "csvAgent",
|
||||||
"label": "AgentExecutor",
|
"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"
|
"type": "AgentExecutor | BaseChain | Runnable"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user