File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 18
18
gguf-py
19
19
tqdm
20
20
21
+ # for the graphical GGUF editor
22
+ pyside6
23
+
21
24
# for scripts/compare-llama-bench.py
22
25
gitpython
23
26
tabulate
Original file line number Diff line number Diff line change 4
4
from .gguf_dump import main as gguf_dump_entrypoint
5
5
from .gguf_set_metadata import main as gguf_set_metadata_entrypoint
6
6
from .gguf_new_metadata import main as gguf_new_metadata_entrypoint
7
- from .gguf_editor_gui import main as gguf_editor_gui_entrypoint
7
+
8
+ try : # has optional dependencies which should not matter for the other scripts
9
+ from .gguf_editor_gui import main as gguf_editor_gui_entrypoint
10
+ except ImportError :
11
+ pass
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " gguf"
3
- version = " 0.16.2 "
3
+ version = " 0.16.3 "
4
4
description = " Read and write ML models in GGUF for GGML"
5
5
authors = [
" GGML <[email protected] >" ]
6
6
packages = [
You can’t perform that action at this time.
0 commit comments