sendStreamingChatRequest abstract method
Sends a streaming chat request to the LLM, yielding chunks as they arrive.
Implementation
Stream<Map<String, dynamic>> sendStreamingChatRequest(
List<Map<String, dynamic>> messages,
List<Map<String, dynamic>>? tools, {
double? temperature,
int? maxCompletionTokens,
double? topP,
String? reasoningEffort,
dynamic stop,
CancellationToken? cancellationToken,
});