Checks whether the localLLM backend library has been downloaded and installed.
Value
Logical value indicating whether the backend library is installed.
Examples
# Check if backend library is installed
if (lib_is_installed()) {
message("Backend library is ready")
} else {
message("Please run install_localLLM() first")
}
#> Backend library is ready