- Compatibility fix for Databricks SDK 0.51 (#158). The minimum required version of the Databricks SDK has been updated to 0.51.0 to accommodate breaking changes introduced in this version, including the removal of certain enumeration values. Notably, the
ServedModelInputWorkloadSize
enumeration has been replaced with well-known string constants, prompting an update to thecreate
function to use the string constantSmall
instead of the removedServedModelInputWorkloadSize.SMALL
value. This change affects the creation of serving endpoints, which now specify workload size using a string value, and resolves issues reported in related projects, including test failures in downstream projects, by ensuring compatibility with the updated SDK version.
Contributors: @asnare