maxInlineDataSize method

GoogleLLMBuilder maxInlineDataSize(
  1. int size
)

Sets maximum inline data size (default: 20MB)

Implementation

GoogleLLMBuilder maxInlineDataSize(int size) {
  _baseBuilder.extension('maxInlineDataSize', size);
  return this;
}