updating submodule

This commit is contained in:
ebolam
2022-12-21 08:14:13 -05:00
parent 27a475ea57
commit c0f5a712ed
4 changed files with 5 additions and 2 deletions

3
.gitmodules vendored
View File

@@ -1,3 +1,6 @@
[submodule "KoboldAI-Horde"]
path = KoboldAI-Horde
url = https://github.com/db0/KoboldAI-Horde-Bridge
[submodule "KoboldAI-Horde-Bridge"]
path = KoboldAI-Horde-Bridge
url = https://github.com/db0/KoboldAI-Horde-Bridge

Submodule KoboldAI-Horde deleted from 790cc14ad8

1
KoboldAI-Horde-Bridge Submodule

Submodule KoboldAI-Horde-Bridge added at 8fd65b60e9

View File

@@ -1327,7 +1327,7 @@ class system_settings(settings):
if value == True:
if self._horde_pid is None:
logger.info("Starting Horde bridge")
bridge = importlib.import_module("KoboldAI-Horde.bridge")
bridge = importlib.import_module("KoboldAI-Horde-Bridge.bridge")
self._horde_pid = bridge.kai_bridge()
threading.Thread(target=self._horde_pid.bridge, args=(1, "0000000000", f"Automated Instance #{random.randint(-100000000, 100000000)}", 'http://127.0.0.1:{}'.format(self.port), "http://koboldai.net", [])).run()
else: