UNPKG

@n8n/n8n-nodes-langchain

Version:

![Banner image](https://user-images.githubusercontent.com/10284570/173569848-c624317f-42b1-45a6-ab09-f0ea3c247648.png)

30 lines (25 loc) 968 B
/** * Item List Output Parser Node - Version 1 * Return the results as separate items */ export interface LcOutputParserItemListV1Params { options?: { /** Defines how many items should be returned maximally. If set to -1, there is no limit. * @default -1 */ numberOfItems?: number | Expression<number>; /** Defines the separator that should be used to split the results into separate items. Defaults to a new line but can be changed depending on the data that should be returned. * @default \n */ separator?: string | Expression<string> | PlaceholderValue; }; } interface LcOutputParserItemListV1NodeBase { type: '@n8n/n8n-nodes-langchain.outputParserItemList'; version: 1; isTrigger: true; } export type LcOutputParserItemListV1ParamsNode = LcOutputParserItemListV1NodeBase & { config: NodeConfig<LcOutputParserItemListV1Params>; }; export type LcOutputParserItemListV1Node = LcOutputParserItemListV1ParamsNode;