We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee71ce8 commit 2559e5aCopy full SHA for 2559e5a
llama_cpp/llama_cpp.py
@@ -25,8 +25,8 @@ def _load_shared_library(lib_base_name):
25
_base_path / f"{lib_base_name}{lib_ext}"
26
]
27
28
- if ("LLAMA_LIB" in os.environ):
29
- lib_base_name = os.environ["LLAMA_LIB"]
+ if ("LLAMA_CPP_LIB" in os.environ):
+ lib_base_name = os.environ["LLAMA_CPP_LIB"]
30
_lib = pathlib.Path(lib_base_name)
31
_base_path = _lib.parent.resolve()
32
_lib_paths = [_lib.resolve()]
0 commit comments