Skip to contents

Get the status of a download job

Usage

lms_download_status(job_id, host = "http://localhost:1234")

Arguments

job_id

Character. The unique identifier for the download job.

host

Character. The host address of the local server. Defaults to "http://localhost:1234".

Value

An object of class lms_download_status containing the download status.

Examples

if (FALSE) { # \dontrun{
lms_server_start()

job_id <- lms_download("google/gemma-3-1b")
status <- lms_download_status(job_id)
print(status)
} # }