Move util to gguf-py/gguf

This commit is contained in:
Galunid 2023-11-05 00:43:56 +01:00
parent 087f88cc15
commit f7de892ee5
2 changed files with 6 additions and 1 deletions

View file

@ -1,10 +1,15 @@
#!/usr/bin/env python3
from __future__ import annotations
from pathlib import Path
import os
import sys
import model
if 'NO_LOCAL_GGUF' not in os.environ:
sys.path.insert(1, str(Path(__file__).parent / 'gguf-py' / 'gguf'))
from util import parse_args
args = parse_args()