Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix duplicate words in Airtable Agent description #3368

Merged
merged 1 commit into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading