Skip to contents

Get the Default Agent Driver

Usage

get_default_driver()

Value

AgentDriver object or NULL.

Examples

if (FALSE) { # \dontrun{
# Resolve the driver to be used when none is explicitly specified
drv <- get_default_driver()
if (!is.null(drv)) {
  message("Using default provider: ", drv$provider)
}
} # }