style: spaces

This commit is contained in:
jaime-m-p 2024-07-04 22:52:09 +02:00
parent 4db8c0d5d9
commit 906476f6ff

View file

@ -25,7 +25,7 @@ logger = logging.getLogger("test-tokenizer-random")
class LibLlama: class LibLlama:
DEFAULT_PATH_LLAMA_H = "./include/llama.h" DEFAULT_PATH_LLAMA_H = "./include/llama.h"
DEFAULT_PATH_INCLUDES = [ "./ggml/include/", "./include/" ] DEFAULT_PATH_INCLUDES = ["./ggml/include/", "./include/"]
DEFAULT_PATH_LIBLLAMA = "./build/src/libllama.so" # CMakeLists.txt: BUILD_SHARED_LIBS ON DEFAULT_PATH_LIBLLAMA = "./build/src/libllama.so" # CMakeLists.txt: BUILD_SHARED_LIBS ON
def __init__(self, path_llama_h: str = None, path_includes: list[str] = [], path_libllama: str = None): def __init__(self, path_llama_h: str = None, path_includes: list[str] = [], path_libllama: str = None):