sendChatRequest abstract method
Sends a single, complete chat request to the LLM.
Implementation
Future<Map<String, dynamic>> sendChatRequest(
List<Map<String, dynamic>> messages,
List<Map<String, dynamic>>? tools, {
double? temperature,
int? maxCompletionTokens,
double? topP,
bool? stream,
String? reasoningEffort,
dynamic stop,
CancellationToken? cancellationToken,
});