format method
Format the prompt with the inputs.
values
- Any arguments to be passed to the prompt template.
Implementation
@override
ChatMessage format([final InputValues values = const {}]) {
return ChatMessage.system(prompt.format(values));
}
Format the prompt with the inputs.
values
- Any arguments to be passed to the prompt template.@override
ChatMessage format([final InputValues values = const {}]) {
return ChatMessage.system(prompt.format(values));
}