Parses a list of Blob lazily.
# Submit async jobs
operations = parser.docai_parse(blobs, gcs_path)
# Optionally poll until finished
parser.is_running(operations)
# Save operation names
operation_names = [op.operation.name for op in operations]
# Later, load results and build Documents
operations = parser.operations_from_names(operation_names)
results = parser.get_results(operations)
docs = parser.parse_from_results(results)Timeout to wait for Document AI to complete, in seconds.
Interval to wait until next check whether parsing operations have been completed, in seconds.
Optional parameters to pass to the Document AI processors