You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/formrecognizer/azure-ai-formrecognizer/azure/ai/formrecognizer/_document_model_administration_client.py
Copy file name to clipboardExpand all lines: sdk/formrecognizer/azure-ai-formrecognizer/azure/ai/formrecognizer/aio/_document_model_administration_client_async.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -100,8 +100,7 @@ async def begin_build_model(
100
100
"""Build a custom model.
101
101
102
102
The request must include a `source` parameter that is an
103
-
externally accessible Azure storage blob container URI (preferably a Shared Access Signature URI). Note that
104
-
a container URI (without SAS) is accepted only when the container is public.
103
+
externally accessible Azure storage blob container URI (preferably a Shared Access Signature URI).
105
104
Models are built using documents that are of the following content type - 'application/pdf',
106
105
'image/jpeg', 'image/png', 'image/tiff', or 'image/bmp'. Other types of content in the container is ignored.
107
106
@@ -112,6 +111,7 @@ async def begin_build_model(
112
111
:keyword str description: An optional description to add to the model.
113
112
:keyword str prefix: A case-sensitive prefix string to filter documents in the source path.
114
113
For example, when using an Azure storage blob URI, use the prefix to restrict sub folders.
114
+
`prefix` should end in '/' to avoid cases where filenames share the same prefix.
115
115
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
116
116
:return: An instance of an AsyncDocumentModelAdministrationLROPoller. Call `result()` on the poller
117
117
object to return a :class:`~azure.ai.formrecognizer.DocumentModel`.
0 commit comments