invoke method
Format the prompt given the input values and return a formatted prompt value.
input
- Any arguments to be passed to the prompt template.
Implementation
@override
Future<PromptValue> invoke(
final InputValues input, {
final BaseLangChainOptions? options,
}) {
return Future.value(formatPrompt(input));
}