Gemma3Specs constructor

const Gemma3Specs()

Implementation

const Gemma3Specs()
  : super(
      encoderType: VisionEncoderType.gemma3SigLIP,
      supportedFormats: const ['png', 'jpg', 'jpeg'],
      maxFileSize: 5 * 1024 * 1024, // 5MB
      minFileSize: 10 * 1024, // 10KB
      maxWidth: 1024,
      maxHeight: 1024,
      minWidth: 224,
      minHeight: 224,
      targetWidth: 896,
      targetHeight: 896,
    );