diff --git a/scaleway-async/scaleway_async/inference/v1/api.py b/scaleway-async/scaleway_async/inference/v1/api.py index 76475002b..8e9b3db2c 100644 --- a/scaleway-async/scaleway_async/inference/v1/api.py +++ b/scaleway-async/scaleway_async/inference/v1/api.py @@ -260,7 +260,7 @@ async def create_deployment( The terms of the EULA can be retrieved using the `GetModelEula` API call. :param tags: List of tags to apply to the deployment. :param min_size: Defines the minimum size of the pool. - :param max_size: Defines the maximum size of the pool. + :param max_size: Defines the maximum size of the pool. Currently, autoscaling is not yet supported, and this value must be equal to `min_size`. :param quantization: Quantization settings to apply to this deployment. :return: :class:`Deployment ` @@ -322,7 +322,7 @@ async def update_deployment( :param name: Name of the deployment. :param tags: List of tags to apply to the deployment. :param min_size: Defines the new minimum size of the pool. - :param max_size: Defines the new maximum size of the pool. + :param max_size: Defines the maximum size of the pool. Currently, autoscaling is not yet supported, and this value must be equal to `min_size`. :param model_id: Id of the model to set to the deployment. :param quantization: Quantization to use to the deployment. :return: :class:`Deployment ` diff --git a/scaleway-async/scaleway_async/inference/v1/types.py b/scaleway-async/scaleway_async/inference/v1/types.py index 14f60e71b..b78b69e56 100644 --- a/scaleway-async/scaleway_async/inference/v1/types.py +++ b/scaleway-async/scaleway_async/inference/v1/types.py @@ -220,7 +220,7 @@ class Deployment: max_size: int """ - Defines the maximum size of the pool. + Defines the maximum size of the pool. Currently, autoscaling is not yet supported, and this value must be equal to `min_size`. """ model_id: str @@ -445,7 +445,7 @@ class CreateDeploymentRequest: max_size: Optional[int] = 0 """ - Defines the maximum size of the pool. + Defines the maximum size of the pool. Currently, autoscaling is not yet supported, and this value must be equal to `min_size`. """ quantization: Optional[DeploymentQuantization] = None @@ -750,7 +750,7 @@ class UpdateDeploymentRequest: max_size: Optional[int] = 0 """ - Defines the new maximum size of the pool. + Defines the maximum size of the pool. Currently, autoscaling is not yet supported, and this value must be equal to `min_size`. """ model_id: Optional[str] = None diff --git a/scaleway/scaleway/inference/v1/api.py b/scaleway/scaleway/inference/v1/api.py index f77229204..75626fc27 100644 --- a/scaleway/scaleway/inference/v1/api.py +++ b/scaleway/scaleway/inference/v1/api.py @@ -258,7 +258,7 @@ def create_deployment( The terms of the EULA can be retrieved using the `GetModelEula` API call. :param tags: List of tags to apply to the deployment. :param min_size: Defines the minimum size of the pool. - :param max_size: Defines the maximum size of the pool. + :param max_size: Defines the maximum size of the pool. Currently, autoscaling is not yet supported, and this value must be equal to `min_size`. :param quantization: Quantization settings to apply to this deployment. :return: :class:`Deployment ` @@ -320,7 +320,7 @@ def update_deployment( :param name: Name of the deployment. :param tags: List of tags to apply to the deployment. :param min_size: Defines the new minimum size of the pool. - :param max_size: Defines the new maximum size of the pool. + :param max_size: Defines the maximum size of the pool. Currently, autoscaling is not yet supported, and this value must be equal to `min_size`. :param model_id: Id of the model to set to the deployment. :param quantization: Quantization to use to the deployment. :return: :class:`Deployment ` diff --git a/scaleway/scaleway/inference/v1/types.py b/scaleway/scaleway/inference/v1/types.py index 14f60e71b..b78b69e56 100644 --- a/scaleway/scaleway/inference/v1/types.py +++ b/scaleway/scaleway/inference/v1/types.py @@ -220,7 +220,7 @@ class Deployment: max_size: int """ - Defines the maximum size of the pool. + Defines the maximum size of the pool. Currently, autoscaling is not yet supported, and this value must be equal to `min_size`. """ model_id: str @@ -445,7 +445,7 @@ class CreateDeploymentRequest: max_size: Optional[int] = 0 """ - Defines the maximum size of the pool. + Defines the maximum size of the pool. Currently, autoscaling is not yet supported, and this value must be equal to `min_size`. """ quantization: Optional[DeploymentQuantization] = None @@ -750,7 +750,7 @@ class UpdateDeploymentRequest: max_size: Optional[int] = 0 """ - Defines the new maximum size of the pool. + Defines the maximum size of the pool. Currently, autoscaling is not yet supported, and this value must be equal to `min_size`. """ model_id: Optional[str] = None