Skip to contents

Returns the full path to the installed localLLM backend library.

Usage

get_lib_path()

Value

Character string containing the path to the backend library file.

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)
}
} # }