chatBackground method

Future<ChatResponse> chatBackground(
  1. List<ChatMessage> messages
)

Convenience method for background chat without tools

Implementation

Future<ChatResponse> chatBackground(List<ChatMessage> messages) {
  return chatWithToolsBackground(messages, null);
}