Interface OutputParser<T>

Type Parameters:
T - the type of the output.

public interface OutputParser<T>
Represents an output parser.
  • Method Summary

    Modifier and Type
    Method
    Description
    Description of the text format.
    parse(String text)
    Parse the given text.
  • Method Details

    • parse

      T parse(String text)
      Parse the given text.
      Parameters:
      text - the text to parse.
      Returns:
      the parsed output.
    • formatInstructions

      String formatInstructions()
      Description of the text format.
      Returns:
      the description of the text format.