@@ -435,15 +435,13 @@ extension LLM where Model == Gemma3 {
435
435
public static func gemma3_4B(
436
436
directory: URL ,
437
437
input: UserInput ,
438
- processing: UserInput . Processing = . init( resize: CGSize ( width: 896 , height: 896 ) ) ,
439
438
maxInputTokenCount: Int ? = nil ,
440
439
maxOutputTokenCount: Int ? = nil
441
440
) throws -> LLM < Gemma3 > {
442
441
try SHLLM . assertSupportedDevice
443
442
return . init(
444
443
directory: directory,
445
444
input: input,
446
- processing: processing,
447
445
maxInputTokenCount: maxInputTokenCount,
448
446
maxOutputTokenCount: maxOutputTokenCount,
449
447
customConfiguration: { config in
@@ -464,15 +462,13 @@ extension LLM where Model == Gemma3 {
464
462
public static func gemma3_12B(
465
463
directory: URL ,
466
464
input: UserInput ,
467
- processing: UserInput . Processing = . init( resize: CGSize ( width: 896 , height: 896 ) ) ,
468
465
maxInputTokenCount: Int ? = nil ,
469
466
maxOutputTokenCount: Int ? = nil
470
467
) throws -> LLM < Gemma3 > {
471
468
try SHLLM . assertSupportedDevice
472
469
return . init(
473
470
directory: directory,
474
471
input: input,
475
- processing: processing,
476
472
maxInputTokenCount: maxInputTokenCount,
477
473
maxOutputTokenCount: maxOutputTokenCount,
478
474
customConfiguration: { config in
@@ -493,15 +489,13 @@ extension LLM where Model == Gemma3 {
493
489
public static func gemma3_27B(
494
490
directory: URL ,
495
491
input: UserInput ,
496
- processing: UserInput . Processing = . init( resize: CGSize ( width: 896 , height: 896 ) ) ,
497
492
maxInputTokenCount: Int ? = nil ,
498
493
maxOutputTokenCount: Int ? = nil
499
494
) throws -> LLM < Gemma3 > {
500
495
try SHLLM . assertSupportedDevice
501
496
return . init(
502
497
directory: directory,
503
498
input: input,
504
- processing: processing,
505
499
maxInputTokenCount: maxInputTokenCount,
506
500
maxOutputTokenCount: maxOutputTokenCount,
507
501
customConfiguration: { config in
0 commit comments