We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb11440 commit a2fce58Copy full SHA for a2fce58
run.bat
@@ -1,4 +1,5 @@
1
@echo off
2
set PYTHONIOENCODING=utf-8
3
set AUTOGGUF_LANGUAGE=en-US
4
+set AUTOGGUF_CHECK_BACKEND=disabled
5
python src/main.py
src/AutoGGUF.py
@@ -89,7 +89,8 @@ def __init__(self):
89
right_layout.addWidget(download_group)
90
91
# Initialize releases and backends
92
- self.refresh_releases()
+ if os.environ.get('AUTOGGUF_CHECK_BACKEND', '').lower() == 'enabled':
93
+ self.refresh_releases()
94
self.refresh_backends()
95
96
# Models path
0 commit comments