hymenjj/llama-cpp-python-prebuilt
0
1"""Internal module use at your own risk2 3This module provides a minimal interface for working with ggml tensors from llama-cpp-python4"""5import os6import pathlib7 8import llama_cpp._ctypes_extensions as ctypes_ext9 10libggml_base_path = pathlib.Path(os.path.abspath(os.path.dirname(__file__))) / "lib"11libggml = ctypes_ext.load_shared_library("ggml", libggml_base_path)12 13 