mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-10-31 23:28:51 +01:00
13 lines
347 B
Python
13 lines
347 B
Python
|
import os
|
||
|
|
||
|
from importlib import import_module
|
||
|
|
||
|
|
||
|
os.environ["NO_LOCAL_GGUF"] = "TRUE"
|
||
|
|
||
|
gguf_convert_endian_entrypoint = import_module("scripts.gguf-convert-endian").main
|
||
|
gguf_dump_entrypoint = import_module("scripts.gguf-dump").main
|
||
|
gguf_set_metadata_entrypoint = import_module("scripts.gguf-set-metadata").main
|
||
|
|
||
|
del import_module, os
|