v0.7.1
- Set upper SDK limit to v1 (#109). In this change, the upper SDK limit is set to version 1.0 in the pyproject.toml file of a library project, allowing projects using this library to set their own appropriate SDK limits. The databricks-sdk dependency is updated from "<0.42" to "<1.0" as a result of this commit. Additionally, the
create
function in theml.py
file of the pytester library has been modified. Previously, theEndpointCoreConfigInput
object was passed as an argument to theserving_endpoints.create
method using the keyword argumentserved_models
. Now,EndpointCoreConfigInput
is passed as a keyword argumentconfig
, which contains theserved_models
parameter, aligning with the new SDK version 1.0 and ensuring consistent endpoint creation. These changes are intended to ensure compatibility with a variety of SDK versions and improve the library's usability for software engineers.
Contributors: @JCZuurmond