conversationToolCallStreamingChannelName property

String get conversationToolCallStreamingChannelName

The Message.channels key used for streamed tool-call token fragments.

This value is read when a new Conversation is created.

Implementation

static String get conversationToolCallStreamingChannelName =>
    LiteRtLmNativeRuntime.instance.conversationToolCallStreamingChannelName;
set conversationToolCallStreamingChannelName (String value)

Implementation

static set conversationToolCallStreamingChannelName(String value) {
  if (value.isEmpty) {
    throw ArgumentError.value(value, 'value', 'Must not be empty.');
  }
  LiteRtLmNativeRuntime.instance.conversationToolCallStreamingChannelName =
      value;
}