@@ -334,6 +334,7 @@ def test_client_create_path(httpserver: HTTPServer):
334
334
'name' : 'dummy' ,
335
335
'modelfile' : 'FROM @sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\n ' ,
336
336
'stream' : False ,
337
+ 'quantize' : None ,
337
338
},
338
339
).respond_with_json ({})
339
340
@@ -357,6 +358,7 @@ def test_client_create_path_relative(httpserver: HTTPServer):
357
358
'name' : 'dummy' ,
358
359
'modelfile' : 'FROM @sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\n ' ,
359
360
'stream' : False ,
361
+ 'quantize' : None ,
360
362
},
361
363
).respond_with_json ({})
362
364
@@ -389,6 +391,7 @@ def test_client_create_path_user_home(httpserver: HTTPServer, userhomedir):
389
391
'name' : 'dummy' ,
390
392
'modelfile' : 'FROM @sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\n ' ,
391
393
'stream' : False ,
394
+ 'quantize' : None ,
392
395
},
393
396
).respond_with_json ({})
394
397
@@ -412,6 +415,7 @@ def test_client_create_modelfile(httpserver: HTTPServer):
412
415
'name' : 'dummy' ,
413
416
'modelfile' : 'FROM @sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\n ' ,
414
417
'stream' : False ,
418
+ 'quantize' : None ,
415
419
},
416
420
).respond_with_json ({})
417
421
@@ -442,6 +446,7 @@ def test_client_create_modelfile_roundtrip(httpserver: HTTPServer):
442
446
PARAMETER stop <<SYS>>
443
447
PARAMETER stop <</SYS>>''' ,
444
448
'stream' : False ,
449
+ 'quantize' : None ,
445
450
},
446
451
).respond_with_json ({})
447
452
@@ -478,6 +483,7 @@ def test_client_create_from_library(httpserver: HTTPServer):
478
483
'name' : 'dummy' ,
479
484
'modelfile' : 'FROM llama2' ,
480
485
'stream' : False ,
486
+ 'quantize' : None ,
481
487
},
482
488
).respond_with_json ({})
483
489
@@ -798,6 +804,7 @@ async def test_async_client_create_path(httpserver: HTTPServer):
798
804
'name' : 'dummy' ,
799
805
'modelfile' : 'FROM @sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\n ' ,
800
806
'stream' : False ,
807
+ 'quantize' : None ,
801
808
},
802
809
).respond_with_json ({})
803
810
@@ -822,6 +829,7 @@ async def test_async_client_create_path_relative(httpserver: HTTPServer):
822
829
'name' : 'dummy' ,
823
830
'modelfile' : 'FROM @sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\n ' ,
824
831
'stream' : False ,
832
+ 'quantize' : None ,
825
833
},
826
834
).respond_with_json ({})
827
835
@@ -846,6 +854,7 @@ async def test_async_client_create_path_user_home(httpserver: HTTPServer, userho
846
854
'name' : 'dummy' ,
847
855
'modelfile' : 'FROM @sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\n ' ,
848
856
'stream' : False ,
857
+ 'quantize' : None ,
849
858
},
850
859
).respond_with_json ({})
851
860
@@ -870,6 +879,7 @@ async def test_async_client_create_modelfile(httpserver: HTTPServer):
870
879
'name' : 'dummy' ,
871
880
'modelfile' : 'FROM @sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\n ' ,
872
881
'stream' : False ,
882
+ 'quantize' : None ,
873
883
},
874
884
).respond_with_json ({})
875
885
@@ -901,6 +911,7 @@ async def test_async_client_create_modelfile_roundtrip(httpserver: HTTPServer):
901
911
PARAMETER stop <<SYS>>
902
912
PARAMETER stop <</SYS>>''' ,
903
913
'stream' : False ,
914
+ 'quantize' : None ,
904
915
},
905
916
).respond_with_json ({})
906
917
@@ -938,6 +949,7 @@ async def test_async_client_create_from_library(httpserver: HTTPServer):
938
949
'name' : 'dummy' ,
939
950
'modelfile' : 'FROM llama2' ,
940
951
'stream' : False ,
952
+ 'quantize' : None ,
941
953
},
942
954
).respond_with_json ({})
943
955
0 commit comments