We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 882773e commit 2d5f5ecCopy full SHA for 2d5f5ec
src/sagemaker/jumpstart/utils.py
@@ -405,9 +405,10 @@ def verify_model_region_and_return_specs(
405
if model_specs.hosting_eula_key and scope == constants.JumpStartScriptScope.INFERENCE.value:
406
LOGGER.info(
407
"Using model with end-user license agreement (EULA). "
408
- "See https://%s.s3.%s.amazonaws.com/%s for terms of use.",
+ "See https://%s.s3.%s.amazonaws.com%s/%s for terms of use.",
409
get_jumpstart_content_bucket(region=region),
410
region,
411
+ ".cn" if region.startswith("cn-") else "",
412
model_specs.hosting_eula_key,
413
)
414
0 commit comments