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