mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 08:34:07 -08:00
87def60979
Github issue / Community forum post (link here to close automatically): https://community.n8n.io/t/langchain-memory-chat/23733 --------- Signed-off-by: Oleg Ivaniv <me@olegivaniv.com> Co-authored-by: Oleg Ivaniv <me@olegivaniv.com> Co-authored-by: Val <68596159+valya@users.noreply.github.com> Co-authored-by: Alex Grozav <alex@grozav.com> Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in> Co-authored-by: Deborah <deborah@starfallprojects.co.uk> Co-authored-by: Jesper Bylund <mail@jesperbylund.com> Co-authored-by: Jon <jonathan.bennetts@gmail.com> Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com> Co-authored-by: Giulio Andreini <andreini@netseven.it> Co-authored-by: Mason Geloso <Mason.geloso@gmail.com> Co-authored-by: Mason Geloso <hone@Masons-Mac-mini.local> Co-authored-by: Mutasem Aldmour <mutasem@n8n.io>
81 lines
2.5 KiB
TypeScript
81 lines
2.5 KiB
TypeScript
/* eslint-disable n8n-nodes-base/node-dirname-against-convention */
|
|
import {
|
|
NodeConnectionType,
|
|
type IExecuteFunctions,
|
|
type INodeType,
|
|
type INodeTypeDescription,
|
|
type SupplyData,
|
|
} from 'n8n-workflow';
|
|
import type { RecursiveCharacterTextSplitterParams } from 'langchain/text_splitter';
|
|
import { RecursiveCharacterTextSplitter } from 'langchain/text_splitter';
|
|
import { logWrapper } from '../../../utils/logWrapper';
|
|
import { getConnectionHintNoticeField } from '../../../utils/sharedFields';
|
|
|
|
export class TextSplitterRecursiveCharacterTextSplitter implements INodeType {
|
|
description: INodeTypeDescription = {
|
|
displayName: 'Recursive Character Text Splitter',
|
|
name: 'textSplitterRecursiveCharacterTextSplitter',
|
|
icon: 'fa:grip-lines-vertical',
|
|
group: ['transform'],
|
|
version: 1,
|
|
description: 'Split text into chunks by characters recursively, recommended for most use cases',
|
|
defaults: {
|
|
name: 'Recursive Character Text Splitter',
|
|
},
|
|
codex: {
|
|
categories: ['AI'],
|
|
subcategories: {
|
|
AI: ['Text Splitters'],
|
|
},
|
|
resources: {
|
|
primaryDocumentation: [
|
|
{
|
|
url: 'https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplitterrecursivecharactertextsplitter/',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
// eslint-disable-next-line n8n-nodes-base/node-class-description-inputs-wrong-regular-node
|
|
inputs: [],
|
|
// eslint-disable-next-line n8n-nodes-base/node-class-description-outputs-wrong
|
|
outputs: [NodeConnectionType.AiTextSplitter],
|
|
outputNames: ['Text Splitter'],
|
|
properties: [
|
|
getConnectionHintNoticeField([NodeConnectionType.AiDocument]),
|
|
{
|
|
displayName: 'Chunk Size',
|
|
name: 'chunkSize',
|
|
type: 'number',
|
|
default: 1000,
|
|
},
|
|
{
|
|
displayName: 'Chunk Overlap',
|
|
name: 'chunkOverlap',
|
|
type: 'number',
|
|
default: 0,
|
|
},
|
|
],
|
|
};
|
|
|
|
async supplyData(this: IExecuteFunctions, itemIndex: number): Promise<SupplyData> {
|
|
this.logger.verbose('Supply Data for Text Splitter');
|
|
|
|
const chunkSize = this.getNodeParameter('chunkSize', itemIndex) as number;
|
|
const chunkOverlap = this.getNodeParameter('chunkOverlap', itemIndex) as number;
|
|
|
|
const params: RecursiveCharacterTextSplitterParams = {
|
|
// TODO: These are the default values, should we allow the user to change them?
|
|
separators: ['\n\n', '\n', ' ', ''],
|
|
chunkSize,
|
|
chunkOverlap,
|
|
keepSeparator: false,
|
|
};
|
|
|
|
const splitter = new RecursiveCharacterTextSplitter(params);
|
|
|
|
return {
|
|
response: logWrapper(splitter, this),
|
|
};
|
|
}
|
|
}
|