Closed
Description
Describe the bug
On line 1808 of sagemaker.model
the function self.sagemaker_session.create_endpoint_config
has a different signature and fails due to the parameter name missmatch. serverless_inference_config
should be serverless_inference_config_dict
(the _dict suffix is missing). As it is now the endpoint update function fails.
sagemaker-python-sdk/src/sagemaker/model.py
Line 1808 in 27e5208