From 6c25331cdd02858ea90c08e3fc104cc03734a867 Mon Sep 17 00:00:00 2001 From: "databricks-ci-ghec-2[bot]" <184307802+databricks-ci-ghec-2[bot]@users.noreply.github.com> Date: Tue, 15 Sep 2026 03:59:33 +0000 Subject: [PATCH] Update SDK to e591a35119560777a1a6ce9ea7e2fe2d30ac1161 --- .codegen/_openapi_sha | 2 +- service/aifunctions/api.go | 4 +--- service/aifunctions/interface.go | 4 +--- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.codegen/_openapi_sha b/.codegen/_openapi_sha index 118140862..61d41fc77 100644 --- a/.codegen/_openapi_sha +++ b/.codegen/_openapi_sha @@ -1 +1 @@ -64504edbdf47f4e1fd6866d208093a0e5370436b \ No newline at end of file +e591a35119560777a1a6ce9ea7e2fe2d30ac1161 \ No newline at end of file diff --git a/service/aifunctions/api.go b/service/aifunctions/api.go index aad69e39c..a4a61e86c 100644 --- a/service/aifunctions/api.go +++ b/service/aifunctions/api.go @@ -22,9 +22,7 @@ type AiFunctionsInterface interface { // higher limit. AiExtract(ctx context.Context, request AiExtractRequest) (*AiExtractResponse, error) - // 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. + // Parse structured content from unstructured documents. AiParseDocument(ctx context.Context, request AiParseDocumentRequest) (*AiParseDocumentResponse, error) } diff --git a/service/aifunctions/interface.go b/service/aifunctions/interface.go index 0090f1f3a..f0b348635 100644 --- a/service/aifunctions/interface.go +++ b/service/aifunctions/interface.go @@ -23,8 +23,6 @@ type AiFunctionsService interface { // higher limit. AiExtract(ctx context.Context, request AiExtractRequest) (*AiExtractResponse, error) - // 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. + // Parse structured content from unstructured documents. AiParseDocument(ctx context.Context, request AiParseDocumentRequest) (*AiParseDocumentResponse, error) }