Disable Horde UI due to lockups

This commit is contained in:
Henk
2023-08-28 20:02:29 +02:00
parent 030ca26aa3
commit c29a5019b3
2 changed files with 3 additions and 1 deletions

2
GPU0.cmd Normal file
View File

@@ -0,0 +1,2 @@
set CUDA_VISIBLE_DEVICES=0
play

View File

@@ -1369,7 +1369,7 @@ class system_settings(settings):
bridge_data.horde_url = self._koboldai_var.horde_url
bridge_data.api_key = self._koboldai_var.horde_api_key
bridge_data.scribe_name = self._koboldai_var.horde_worker_name
bridge_data.disable_terminal_ui = False
bridge_data.disable_terminal_ui = True
if bridge_data.worker_name == "My Awesome Instance":
bridge_data.worker_name = f"KoboldAI UI Instance #{random.randint(-100000000, 100000000)}"
worker_module = importlib.import_module("AI-Horde-Worker.worker.workers.scribe")