UNPKG

@n8n/n8n-nodes-langchain

Version:

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

14 lines (13 loc) 428 B
import { BaseOutputParser } from '@langchain/core/output_parsers'; export declare class N8nItemListOutputParser extends BaseOutputParser<string[]> { lc_namespace: string[]; private numberOfItems; private separator; constructor(options: { numberOfItems?: number; separator?: string; }); parse(text: string): Promise<string[]>; getFormatInstructions(): string; getSchema(): void; }