List available processor types
list_processor_types(
full_list = FALSE,
proj_id = get_project_id(),
loc = "eu",
token = dai_token()
)
boolean.
a GCS project id.
a two-letter region code; "eu" or "us".
an authentication token generated by
dai_auth()
or another auth function.
list or character vector
Retrieves information about the processors that
can be created in the current project. With
full_list = TRUE
it returns a list with detailed
information about each processor. With full_list = FALSE
it returns a character vector with just the processor names.
For more information about processors, see the
Google Document AI documentation at
https://cloud.google.com/document-ai/docs/.
if (FALSE) { # \dontrun{
avail_short <- list_processor_types()
avail_long <- list_processor_types(full_list = TRUE)
} # }