Move util to gguf-py/gguf
This commit is contained in:
parent
087f88cc15
commit
f7de892ee5
2 changed files with 6 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue