diff --git a/python/ray/serve/api.py b/python/ray/serve/api.py index b60c0dd7ed6a..3ce55f855e3d 100644 --- a/python/ray/serve/api.py +++ b/python/ray/serve/api.py @@ -391,7 +391,7 @@ def deployment( catch-all. ray_actor_options: Options to be passed to the Ray actor constructor such as resource requirements. - user_config (Optional[Any]): [experimental] Config to pass to the + user_config (Optional[Any]): Config to pass to the reconfigure method of the deployment. This can be updated dynamically without changing the version of the deployment and restarting its replicas. The user_config needs to be hashable to diff --git a/python/ray/serve/schema.py b/python/ray/serve/schema.py index e2e93ca4c6d4..1b7d3643e87f 100644 --- a/python/ray/serve/schema.py +++ b/python/ray/serve/schema.py @@ -118,7 +118,7 @@ class DeploymentSchema( user_config: Dict = Field( default=None, description=( - "[EXPERIMENTAL] Config to pass into this deployment's " + "Config to pass into this deployment's " "reconfigure method. This can be updated dynamically " "without restarting replicas" ),