diff --git a/packages/@n8n/nodes-langchain/nodes/chains/SentimentAnalysis/SentimentAnalysis.node.ts b/packages/@n8n/nodes-langchain/nodes/chains/SentimentAnalysis/SentimentAnalysis.node.ts index bf55cf36a4c73..5f5c6f19dbd88 100644 --- a/packages/@n8n/nodes-langchain/nodes/chains/SentimentAnalysis/SentimentAnalysis.node.ts +++ b/packages/@n8n/nodes-langchain/nodes/chains/SentimentAnalysis/SentimentAnalysis.node.ts @@ -129,7 +129,8 @@ export class SentimentAnalysis implements INodeType { name: 'enableAutoFixing', type: 'boolean', default: true, - description: 'Whether to enable auto-fixing for the output parser', + description: + 'Whether to enable auto-fixing (may trigger an additional LLM call if output is broken)', }, ], }, diff --git a/packages/@n8n/nodes-langchain/nodes/chains/TextClassifier/TextClassifier.node.ts b/packages/@n8n/nodes-langchain/nodes/chains/TextClassifier/TextClassifier.node.ts index ab6d4dedd3a14..3c0740664c70c 100644 --- a/packages/@n8n/nodes-langchain/nodes/chains/TextClassifier/TextClassifier.node.ts +++ b/packages/@n8n/nodes-langchain/nodes/chains/TextClassifier/TextClassifier.node.ts @@ -156,7 +156,8 @@ export class TextClassifier implements INodeType { name: 'enableAutoFixing', type: 'boolean', default: true, - description: 'Whether to enable auto-fixing for the output parser', + description: + 'Whether to enable auto-fixing (may trigger an additional LLM call if output is broken)', }, ], },