Returns a string that represents the format instructions for the plan.
This is defined by the PLANNER_SYSTEM_PROMPT_MESSAGE_TEMPLATE
constant.
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.
The output text to be parsed.
A Plan object consisting of a series of steps.
Specific implementation of the
BaseOutputParserclass designed to parse the output text into aPlanobject.