Returns the full path to the installed localLLM backend library.
Details
This function will throw an error if the backend library is not installed.
Use lib_is_installed to check installation status first.
Examples
if (FALSE) { # \dontrun{
# Get the library path (only if installed)
if (lib_is_installed()) {
lib_path <- get_lib_path()
message("Library is at: ", lib_path)
}
} # }