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) }