getChatResponse method
Implementation
Future<String?> getChatResponse(
{required Iterable<Message> messages, int chatContextLength = 4}) =>
getResponse(
prompt:
messages.transformToChatPrompt(contextLength: chatContextLength));