diff --git a/clients/python/lorax/types.py b/clients/python/lorax/types.py index f20a222a3..b206907ad 100644 --- a/clients/python/lorax/types.py +++ b/clients/python/lorax/types.py @@ -336,3 +336,6 @@ class StreamResponse(BaseModel): class DeployedModel(BaseModel): model_id: str sha: str + + # Suppress pydantic warning over `model_id` field. + model_config = ConfigDict(protected_namespaces=())