Skip to main content

Class: CommaSeparatedListOutputParser

output_parsers.CommaSeparatedListOutputParser

Class to parse the output of an LLM call as a comma-separated list.

Hierarchy

Constructors

constructor

new CommaSeparatedListOutputParser()

Inherited from

ListOutputParser.constructor

Methods

_type

_type(): string

Return the string type key uniquely identifying this class of parser

Returns

string

Inherited from

ListOutputParser._type

Defined in

langchain/src/schema/index.ts:169


getFormatInstructions

getFormatInstructions(): string

Return a string describing the format of the output.

Example

{
"foo": "bar"
}

Returns

string

Format instructions.

Overrides

ListOutputParser.getFormatInstructions

Defined in

langchain/src/output_parsers/list.ts:27


parse

parse(text): Promise<string[]>

Parse the output of an LLM call.

Parameters

NameTypeDescription
textstringLLM output to parse.

Returns

Promise<string[]>

Parsed output.

Overrides

ListOutputParser.parse

Defined in

langchain/src/output_parsers/list.ts:16


parseWithPrompt

parseWithPrompt(text, _prompt): Promise<unknown>

Parameters

NameType
textstring
_promptBasePromptValue

Returns

Promise<unknown>

Inherited from

ListOutputParser.parseWithPrompt

Defined in

langchain/src/schema/index.ts:147