Skip to content

Commit 102e3a1

Browse files
committed
chore: update for new year and improve compliance
- updated copyright year in LICENSE file to 2025 - bundled llama.cpp licensing text in About menu to maintain MIT compliance - updated llama.cpp and gguf Python library and scripts - adjusted monitoring intervals from 0.2s to 0.5s - updated Python requirements to latest compatible versions - added new HF to GGUF conversion types: `tq1_0` and `tq2_0` Happy New Year 🎉!
1 parent ddbf96c commit 102e3a1

15 files changed

+3977
-1058
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2024 leafspark
189+
Copyright (c) 2024-2025 leafspark
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

requirements.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
PyYAML~=6.0.2
2-
psutil~=6.1.0
2+
psutil~=6.1.1
33
pynvml~=12.0.0
44
PySide6~=6.8.1
5-
safetensors~=0.4.5
5+
safetensors~=0.5.0
66
numpy<2.0.0
77
torch~=2.5.1
88
sentencepiece~=0.2.0
9-
setuptools~=75.5.0
10-
huggingface-hub~=0.26.5
11-
transformers~=4.47.0
9+
setuptools~=75.6.0
10+
huggingface-hub~=0.27.0
11+
transformers~=4.47.1
1212
fastapi~=0.115.6
1313
uvicorn~=0.34.0

src/AutoGGUF.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ def __init__(self, args: List[str]) -> None:
500500
# Timer for updating system info
501501
self.timer = QTimer()
502502
self.timer.timeout.connect(self.update_system_info)
503-
self.timer.start(200)
503+
self.timer.start(500)
504504

505505
# Backend selection
506506
backend_layout = QHBoxLayout()
@@ -1023,7 +1023,9 @@ def __init__(self, args: List[str]) -> None:
10231023
hf_to_gguf_layout.addRow(OUTPUT_FILE, hf_outfile_layout)
10241024

10251025
self.hf_outtype = QComboBox()
1026-
self.hf_outtype.addItems(["f32", "f16", "bf16", "q8_0", "auto"])
1026+
self.hf_outtype.addItems(
1027+
["f32", "f16", "bf16", "q8_0", "tq1_0", "tq2_0", "auto"]
1028+
)
10271029
hf_to_gguf_layout.addRow(OUTPUT_TYPE, self.hf_outtype)
10281030

10291031
self.hf_vocab_only = QCheckBox(VOCAB_ONLY)

src/GPUMonitor.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def __init__(self, parent=None) -> None:
9595

9696
self.timer = QTimer(self)
9797
self.timer.timeout.connect(self.update_gpu_info)
98-
self.timer.start(200) # Update every 0.2 seconds
98+
self.timer.start(500) # Update every 0.5 seconds
9999

100100
self.gpu_data = []
101101
self.vram_data = []
@@ -192,7 +192,7 @@ def update_graph_data() -> None:
192192

193193
timer = QTimer(dialog)
194194
timer.timeout.connect(update_graph_data)
195-
timer.start(200) # Update every 0.2 seconds
195+
timer.start(500) # Update every 0.5 seconds
196196

197197
dialog.exec()
198198

@@ -227,7 +227,7 @@ def update_graph_data() -> None:
227227

228228
timer = QTimer(dialog)
229229
timer.timeout.connect(update_graph_data)
230-
timer.start(200) # Update every 0.2 seconds
230+
timer.start(500) # Update every 0.5 seconds
231231

232232
tab_widget.addTab(gpu_graph, GPU_USAGE_OVER_TIME)
233233
tab_widget.addTab(vram_graph, VRAM_USAGE_OVER_TIME)

0 commit comments

Comments
 (0)