chat method
Implementation
@override
Stream<String> chat(
String text, {
List<Uint8List>? imageBytes,
Uint8List? audioBytes,
bool enableThinking = false,
}) {
_assertOpen();
return _client._chatOn(
_conversation!,
text,
imageBytes: imageBytes,
audioBytes: audioBytes,
enableThinking: enableThinking,
);
}