Learn R Programming

localLLM (version 1.1.0)

lib_is_installed: Check if Backend Library is Installed

Description

Checks whether the localLLM backend library has been downloaded and installed.

Usage

lib_is_installed()

Arguments

Value

Logical value indicating whether the backend library is installed.

See Also

install_localLLM, get_lib_path

Examples

Run this code
# Check if backend library is installed
if (lib_is_installed()) {
  message("Backend library is ready")
} else {
  message("Please run install_localLLM() first")
}

Run the code above in your browser using DataLab