Learn R Programming

localLLM (version 1.1.0)

get_lib_path: Get Backend Library Path

Description

Returns the full path to the installed localLLM backend library.

Usage

get_lib_path()

Arguments

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.

See Also

lib_is_installed, install_localLLM

Examples

Run this code
if (FALSE) {
# Get the library path (only if installed)
if (lib_is_installed()) {
  lib_path <- get_lib_path()
  message("Library is at: ", lib_path)
}
}

Run the code above in your browser using DataLab