Skip to main content

Class: ChatConversationalAgentOutputParser

agents.ChatConversationalAgentOutputParser

Class to parse the output of an LLM call.

Hierarchy

Constructors

constructor

new ChatConversationalAgentOutputParser()

Inherited from

BaseOutputParser.constructor

Methods

_type

_type(): string

Return the string type key uniquely identifying this class of parser

Returns

string

Inherited from

BaseOutputParser._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

BaseOutputParser.getFormatInstructions

Defined in

langchain/src/agents/chat_convo/index.ts:46


parse

parse(text): Promise<unknown>

Parse the output of an LLM call.

Parameters

NameTypeDescription
textstringLLM output to parse.

Returns

Promise<unknown>

Parsed output.

Overrides

BaseOutputParser.parse

Defined in

langchain/src/agents/chat_convo/index.ts:28


parseWithPrompt

parseWithPrompt(text, _prompt): Promise<unknown>

Parameters

NameType
textstring
_promptBasePromptValue

Returns

Promise<unknown>

Inherited from

BaseOutputParser.parseWithPrompt

Defined in

langchain/src/schema/index.ts:147