Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .codegen/_last_sha
Original file line number Diff line number Diff line change
@@ -1 +1 @@
d4a68ff2811115e3aeb9d7e148ff9b4efb6e2a15
1be65bf808bb8c9084188c53218d71fa3a4b22e9
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Version changelog

## Release v0.138.0 (2026-09-10)

### API Changes
* Add `unity_catalog_image_path` field for `databricks.sdk.service.jobs.AiRuntimeTask`.
* Add `feature_view_source` field for `databricks.sdk.service.ml.DataSource`.
* Add `budget_policy_id` and `tags` fields for `databricks.sdk.service.ml.PublishSpec`.
* Add `development` field for `databricks.sdk.service.pipelines.StartUpdate`.

## Release v0.137.0 (2026-09-09)

### API Changes
Expand Down
11 changes: 8 additions & 3 deletions databricks/sdk/service/aifunctions.py
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,9 @@ def __init__(self, api_client):
def ai_classify(
self, content: any, labels: any, *, options: Optional[AiClassifyOptions] = None
) -> AiClassifyResponse:
"""Classifies content according to a set of provided labels.
"""Classifies content according to a set of provided labels. For REST API requests, the default rate
limit is 1,200 requests per minute per workspace. Contact your Databricks account team to request a
higher limit.

:param content: any
The content to classify. It accepts a plain string or the response object of
Expand Down Expand Up @@ -667,7 +669,9 @@ def ai_classify(
return AiClassifyResponse.from_dict(res)

def ai_extract(self, content: any, schema: any, *, options: Optional[AiExtractOptions] = None) -> AiExtractResponse:
"""Extracts structured data from text and documents according to a provided schema.
"""Extracts structured data from text and documents according to a provided schema. For REST API
requests, the default rate limit is 120 requests per minute per workspace. Contact your Databricks
account team to request a higher limit.

:param content: any
The text to extract from. It accepts a plain string or the response object of
Expand Down Expand Up @@ -706,7 +710,8 @@ def ai_extract(self, content: any, schema: any, *, options: Optional[AiExtractOp
def ai_parse_document(
self, content: str, *, options: Optional[AiParseDocumentOptions] = None
) -> AiParseDocumentResponse:
"""Parse structured content from unstructured documents.
"""Parse structured content from unstructured documents. For REST API requests, the default rate limit is
120 pages per minute per workspace. Contact your Databricks account team to request a higher limit.

:param content: str
The document to parse, given as a Unity Catalog volume path to the source file (the REST API accepts
Expand Down
13 changes: 5 additions & 8 deletions databricks/sdk/service/catalog.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion databricks/sdk/service/compute.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions databricks/sdk/service/jobs.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

92 changes: 92 additions & 0 deletions databricks/sdk/service/ml.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions databricks/sdk/service/pipelines.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion databricks/sdk/service/sandbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class Sandbox:
"""Output only. The creation time of the sandbox."""

display_name: Optional[str] = None
"""Human-readable display label for the sandbox. At most 256 bytes."""
"""Human-readable display label for the sandbox. At most 256 characters."""

name: Optional[str] = None
"""The AIP-compliant resource name, such as "sandboxes/my-sandbox"."""
Expand Down
2 changes: 1 addition & 1 deletion databricks/sdk/service/sql.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading