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

Hierarchy (view full)

Constructors

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.

Generated using TypeDoc