Add Model Serving Endpoints to databricks-bundles package
#4340
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Changes
This PR adds support for Model Serving Endpoints in the Python bundles package, allowing users to define and manage serving endpoints using Python code.
ModelServingEndpointresource typemodel_serving_endpointnamespace (e.g.EndpointTag)Resourcesfor model serving endpointsWhy
Model Serving Endpoints can be defined in conventional DABs but not in pyDABs. Managing Mosaic AI Gateway endpoints via yaml-only configurations becomes verbose quite quickly. Python support enables configuration in a user-friendly manner across workspace environments (e.g. via OmegaConf)
The cross-namespace re-export enables use of EndpointTag and other methods in a manner compatible with the existing api. The openAPI schema defines some attributes of model serving in an adjacent namespace (
model_serving_endpointsandserving).Enum fix ensure that provider inputs like
amazon-bedrockresolve correctly in python.Tests
/python/databricks_tests/core/test_resources.pyfor model_serving_endpoint passes