28
28
AWS_SECRET_ACCESS_KEY ,
29
29
CORE_MODEL_BUCKET ,
30
30
INFER_BUCKET ,
31
- LICENSE_SERVER ,
32
31
MODEL_CACHE_DIR ,
33
32
ONNXRUNTIME_EXECUTION_PROVIDERS ,
34
33
REQUIRED_ONNX_PROVIDERS ,
43
42
from inference .core .utils .image_utils import load_image
44
43
from inference .core .utils .onnx import get_onnxruntime_execution_providers
45
44
from inference .core .utils .preprocess import prepare
45
+ from inference .core .utils .url_utils import ApiUrl
46
46
47
47
if AWS_ACCESS_KEY_ID and AWS_ACCESS_KEY_ID :
48
48
import boto3
@@ -337,12 +337,9 @@ def get_model_artifacts(self) -> None:
337
337
else :
338
338
self .log ("Downloading model artifacts from Roboflow API" )
339
339
# AWS Keys are not available so we use the API Key to hit the Roboflow API which returns a signed link for downloading model artifacts
340
- self .api_url = f"{ API_BASE_URL } /ort/{ self .endpoint } ?api_key={ self .api_key } &device={ self .device_id } &nocache=true&dynamic=true"
341
- if LICENSE_SERVER :
342
- self .api_url = (
343
- f"http://{ LICENSE_SERVER } /proxy?url="
344
- + urllib .parse .quote (self .api_url , safe = "~()*!'" )
345
- )
340
+ self .api_url = ApiUrl (
341
+ f"{ API_BASE_URL } /ort/{ self .endpoint } ?api_key={ self .api_key } &device={ self .device_id } &nocache=true&dynamic=true"
342
+ )
346
343
api_data = get_api_data (self .api_url )
347
344
if "ort" not in api_data .keys ():
348
345
raise TensorrtRoboflowAPIError (
@@ -359,24 +356,8 @@ def get_model_artifacts(self) -> None:
359
356
if "colors" in api_data :
360
357
self .colors = api_data ["colors" ]
361
358
362
- if LICENSE_SERVER :
363
- license_server_base_url = f"http://{ LICENSE_SERVER } /proxy?url="
364
- weights_url = license_server_base_url + urllib .parse .quote (
365
- api_data ["model" ], safe = "~()*!'"
366
- )
367
-
368
- def get_env_url (api_data ):
369
- return license_server_base_url + urllib .parse .quote (
370
- api_data ["environment" ], safe = "~()*!'"
371
- )
372
-
373
- else :
374
- weights_url = api_data ["model" ]
375
-
376
- def get_env_url (api_data ):
377
- return api_data ["environment" ]
378
-
379
359
t1 = perf_counter ()
360
+ weights_url = ApiUrl (api_data ["model" ])
380
361
r = requests .get (weights_url )
381
362
with self .open_cache (self .weights_file , "wb" ) as f :
382
363
f .write (r .content )
@@ -385,7 +366,7 @@ def get_env_url(api_data):
385
366
"Weights download took longer than 120 seconds, refreshing API request"
386
367
)
387
368
api_data = get_api_data (self .api_url )
388
- env_url = get_env_url (api_data )
369
+ env_url = ApiUrl (api_data [ "environment" ] )
389
370
self .environment = requests .get (env_url ).json ()
390
371
with open (self .cache_file ("environment.json" ), "w" ) as f :
391
372
json .dump (self .environment , f )
@@ -625,12 +606,9 @@ def download_weights(self) -> None:
625
606
raise Exception (f"Failed to download model artifacts." )
626
607
else :
627
608
# AWS Keys are not available so we use the API Key to hit the Roboflow API which returns a signed link for downloading model artifacts
628
- self .api_url = f"{ API_BASE_URL } /core_model/{ self .endpoint } ?api_key={ self .api_key } &device={ self .device_id } &nocache=true"
629
- if LICENSE_SERVER :
630
- self .api_url = (
631
- f"http://{ LICENSE_SERVER } /proxy?url="
632
- + urllib .parse .quote (self .api_url , safe = "~()*!'" )
633
- )
609
+ self .api_url = ApiUrl (
610
+ f"{ API_BASE_URL } /core_model/{ self .endpoint } ?api_key={ self .api_key } &device={ self .device_id } &nocache=true"
611
+ )
634
612
api_data = get_api_data (self .api_url )
635
613
if "weights" not in api_data .keys ():
636
614
raise TensorrtRoboflowAPIError (
@@ -640,13 +618,7 @@ def download_weights(self) -> None:
640
618
weights_url_keys = api_data ["weights" ].keys ()
641
619
642
620
for weights_url_key in weights_url_keys :
643
- if LICENSE_SERVER :
644
- license_server_base_url = f"http://{ LICENSE_SERVER } /proxy?url="
645
- weights_url = license_server_base_url + urllib .parse .quote (
646
- api_data ["weights" ][weights_url_key ], safe = "~()*!'"
647
- )
648
- else :
649
- weights_url = api_data ["weights" ][weights_url_key ]
621
+ weights_url = ApiUrl (api_data ["weights" ][weights_url_key ])
650
622
t1 = perf_counter ()
651
623
attempts = 0
652
624
success = False
0 commit comments