invoke method
Invokes the output parser on the given input.
input
- The result of an LLM call.options
- Not used.
Implementation
@override
Future<String> invoke(
final ParserInput input, {
final OutputParserOptions? options,
}) {
return Future.value(_parse(input));
}