getChatResponseAsync method
Implementation
Stream<String?> getChatResponseAsync(
{required Iterable<Message> messages, int chatContextLength = 4}) {
return getResponseAsync(
prompt:
messages.transformToChatPrompt(contextLength: chatContextLength));
}