langchain.js
    Preparing search index...

    Specific implementation of the BaseOutputParser class designed to parse the output text into a Plan object.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    Methods

    Constructors

    Properties

    lc_namespace: string[] = ...

    Methods

    • Returns a string that represents the format instructions for the plan. This is defined by the PLANNER_SYSTEM_PROMPT_MESSAGE_TEMPLATE constant.

      Returns string

      A string representing the format instructions for the plan.

    • Parses the output text into a Plan object. The steps are extracted by splitting the text on newline followed by a number and a period, indicating the start of a new step. The <END_OF_PLAN> tag is then removed from each step.

      Parameters

      • text: string

        The output text to be parsed.

      Returns Promise<Plan>

      A Plan object consisting of a series of steps.