chat method
Convenience method for simple chat without tools
Implementation
Future<ChatResponse> chat(List<ChatMessage> messages) {
return chatWithTools(messages, null);
}
Convenience method for simple chat without tools
Future<ChatResponse> chat(List<ChatMessage> messages) {
return chatWithTools(messages, null);
}