diff --git a/buildout.txt b/buildout.txt new file mode 100644 index 0000000..498488b --- /dev/null +++ b/buildout.txt @@ -0,0 +1,10 @@ +upload 22 .cs files + Determining projects to restore... + Restored /opt/swarmui/src/Extensions/swarm-assistent/SwarmAssistentExtension.csproj (in 272 ms). + SwarmAssistentExtension -> /opt/swarmui/src/Extensions/swarm-assistent/bin/Debug/net8.0/SwarmAssistentExtension.dll + +Build succeeded. + 0 Warning(s) + 0 Error(s) + +Time Elapsed 00:00:02.58 diff --git a/src/gpu_rent/cli.py b/src/gpu_rent/cli.py index 16f3186..84ac3b9 100644 --- a/src/gpu_rent/cli.py +++ b/src/gpu_rent/cli.py @@ -830,7 +830,8 @@ def logs( check=False, timeout=60, ) - console.print(out) + # markup=False: пути вида [/opt/swarmui/...] в выводе MSBuild ломают rich-разметку + console.print(out, markup=False, highlight=False) except GpuRentError as exc: _die(exc) diff --git a/tmp_build_ext.py b/tmp_build_ext.py new file mode 100644 index 0000000..a29936b --- /dev/null +++ b/tmp_build_ext.py @@ -0,0 +1,32 @@ +"""Upload local swarm-assistent sources to the VM and build them there.""" + +import sys +from pathlib import Path + +from gpu_rent.config import load_config +from gpu_rent.state import load_state +from gpu_rent.ssh_ops import _connect, put_file_on, run_ssh_on + +LOCAL = Path(r"D:\Github\swarm-assistent") +REMOTE = "/opt/swarmui/src/Extensions/swarm-assistent" + +cfg = load_config(require_auth=True) +state = load_state() +client = _connect(cfg, state.floating_ip) +try: + names = sorted(p.name for p in LOCAL.glob("*.cs")) + print(f"upload {len(names)} .cs files") + run_ssh_on(client, f"sudo -n chown -R $USER {REMOTE}", check=False) + for name in names: + put_file_on(client, LOCAL / name, f"{REMOTE}/{name}") + put_file_on(client, LOCAL / "SwarmAssistentExtension.csproj", f"{REMOTE}/SwarmAssistentExtension.csproj") + out = run_ssh_on( + client, + "export PATH=$HOME/.dotnet:$PATH DOTNET_CLI_TELEMETRY_OPTOUT=1; " + f"cd /opt/swarmui && dotnet build {REMOTE}/SwarmAssistentExtension.csproj -v m 2>&1 | tail -n 40", + check=False, + timeout=600, + ) + sys.stdout.write(out) +finally: + client.close() diff --git a/tmp_run_smoke.py b/tmp_run_smoke.py new file mode 100644 index 0000000..529185f --- /dev/null +++ b/tmp_run_smoke.py @@ -0,0 +1,18 @@ +import sys +from pathlib import Path + +from gpu_rent.config import load_config +from gpu_rent.state import load_state +from gpu_rent.ssh_ops import _connect, put_file_on, run_ssh_on + +cfg = load_config(require_auth=True) +state = load_state() +client = _connect(cfg, state.floating_ip) +try: + put_file_on(client, Path("tmp_smoke.sh"), "/tmp/tmp_smoke.sh") + out = run_ssh_on( + client, "sed -i 's/\\r$//' /tmp/tmp_smoke.sh && bash /tmp/tmp_smoke.sh", check=False, timeout=120 + ) + sys.stdout.write(out) +finally: + client.close() diff --git a/tmp_smoke.sh b/tmp_smoke.sh new file mode 100644 index 0000000..5babf28 --- /dev/null +++ b/tmp_smoke.sh @@ -0,0 +1,11 @@ +#!/bin/bash +sudo -n systemctl restart swarmui +sleep 40 +S=$(curl -s -X POST http://127.0.0.1:7801/API/GetNewSession -H 'Content-Type: application/json' -d '{}' | sed -n 's/.*"session_id": *"\([^"]*\)".*/\1/p') +for api in AssistentListChats AssistentListTrainSamples AssistentListMemory; do + echo "--- $api ---" + curl -s -X POST "http://127.0.0.1:7801/API/$api" -H 'Content-Type: application/json' -d "{\"session_id\":\"$S\"}" | head -c 300 + echo +done +echo "--- log ---" +sudo -n journalctl -u swarmui --no-pager --since '-3min' | grep -iE 'assistent|error|private dep' | tail -n 15 diff --git a/tmp_vmlog.py b/tmp_vmlog.py new file mode 100644 index 0000000..3a962f9 --- /dev/null +++ b/tmp_vmlog.py @@ -0,0 +1,11 @@ +import sys + +from gpu_rent.config import load_config +from gpu_rent.state import load_state +from gpu_rent.ssh_ops import run_ssh + +cfg = load_config(require_auth=True) +state = load_state() +cmd = sys.argv[1] if len(sys.argv) > 1 else "systemctl is-active swarmui" +out = run_ssh(cfg, state.floating_ip, cmd, check=False, timeout=120) +sys.stdout.write(out) diff --git a/vmbuild.txt b/vmbuild.txt new file mode 100644 index 0000000..c68a2a9 --- /dev/null +++ b/vmbuild.txt @@ -0,0 +1,36 @@ +Aug 22 11:36:56 gpu-rent launch-linux.sh[3481]: 11:36:56.362 [Init] Prepping extension: SwarmUI.Builtin_DynamicThresholding.DynamicThresholdingExtension... +Aug 22 11:36:56 gpu-rent launch-linux.sh[3481]: 11:36:56.363 [Init] Prepping extension: SwarmUI.Builtin_ComfyUIBackend.ComfyUIBackendExtension... +Aug 22 11:36:56 gpu-rent launch-linux.sh[3481]: 11:36:56.363 [Init] Prepping extension: SwarmUI.Builtin_AutoWebUIExtension.AutoWebUIBackendExtension... +Aug 22 11:37:01 gpu-rent launch-linux.sh[3481]: 11:37:01.367 [Error] !!!! +Aug 22 11:37:01 gpu-rent launch-linux.sh[3481]: 11:37:01.367 [Error] Build of extension project src/Extensions/swarm-assistent/SwarmAssistentExtension.csproj failed! Raw output: +Aug 22 11:37:01 gpu-rent launch-linux.sh[3481]: Determining projects to restore... +Aug 22 11:37:01 gpu-rent launch-linux.sh[3481]: All projects are up-to-date for restore. +Aug 22 11:37:01 gpu-rent launch-linux.sh[3481]: /opt/swarmui/src/Extensions/swarm-assistent/AssistentTrainingJobs.cs(155,66): error CS0246: The type or namespace name 'WebSocket' could not be found (are you missing a using directive or an assembly reference?) [/opt/swarmui/src/Extensions/swarm-assistent/SwarmAssistentExtension.csproj] +Aug 22 11:37:01 gpu-rent launch-linux.sh[3481]: Build FAILED. +Aug 22 11:37:01 gpu-rent launch-linux.sh[3481]: /opt/swarmui/src/Extensions/swarm-assistent/AssistentTrainingJobs.cs(155,66): error CS0246: The type or namespace name 'WebSocket' could not be found (are you missing a using directive or an assembly reference?) [/opt/swarmui/src/Extensions/swarm-assistent/SwarmAssistentExtension.csproj] +Aug 22 11:37:01 gpu-rent launch-linux.sh[3481]: 0 Warning(s) +Aug 22 11:37:01 gpu-rent launch-linux.sh[3481]: 1 Error(s) +Aug 22 11:37:01 gpu-rent launch-linux.sh[3481]: Time Elapsed 00:00:04.31 +Aug 22 11:37:01 gpu-rent launch-linux.sh[3481]: 11:37:01.367 [Error] !!!! +Aug 22 11:37:03 gpu-rent launch-linux.sh[3481]: 11:37:03.382 [Init] CPU Cores: 4 | RAM: 15.62 GiB total, 14.63 GiB available, unknown virtual/swap +Aug 22 11:37:03 gpu-rent launch-linux.sh[3481]: 11:37:03.404 [Init] Prepping options... +Aug 22 11:37:03 gpu-rent launch-linux.sh[3481]: 11:37:03.637 [Init] Loading models list... +Aug 22 11:37:03 gpu-rent launch-linux.sh[3481]: 11:37:03.673 [Init] Loading backends... +Aug 22 11:37:03 gpu-rent launch-linux.sh[3481]: 11:37:03.674 [Init] Loading backends from file... +Aug 22 11:37:03 gpu-rent launch-linux.sh[3481]: 11:37:03.680 [Init] Initializing backend #0 - ComfyUI Self-Starting... +Aug 22 11:37:03 gpu-rent launch-linux.sh[3481]: 11:37:03.681 [Init] Prepping API... +Aug 22 11:37:03 gpu-rent launch-linux.sh[3481]: 11:37:03.686 [Init] Backend request handler loop ready... +Aug 22 11:37:03 gpu-rent launch-linux.sh[3481]: 11:37:03.686 [Init] Prepping webserver... +Aug 22 11:37:03 gpu-rent launch-linux.sh[3481]: 11:37:03.703 [Init] Self-Start ComfyUI-0 on port 7821 is loading... +Aug 22 11:37:03 gpu-rent launch-linux.sh[3481]: 11:37:03.839 [Init] Scan for web extensions... +Aug 22 11:37:03 gpu-rent launch-linux.sh[3481]: 11:37:03.841 [Init] Readying extensions for launch... +Aug 22 11:37:03 gpu-rent launch-linux.sh[3481]: 11:37:03.842 [Init] Launching server... +Aug 22 11:37:03 gpu-rent launch-linux.sh[3481]: 11:37:03.843 [Init] Starting webserver on http://127.0.0.1:7801 +Aug 22 11:37:03 gpu-rent launch-linux.sh[3481]: 11:37:03.902 [Init] Current git commit is [062407c: Use HF token for internal model downloader (#1516)], marked as date 2026-08-21 19:33:48 (16 hours ago) +Aug 22 11:37:03 gpu-rent launch-linux.sh[3481]: 11:37:03.905 [Error] Swarm failed to check for updates! Tag list empty?! +Aug 22 11:37:04 gpu-rent launch-linux.sh[3481]: 11:37:04.651 [Init] GPU 0: NVIDIA GeForce RTX 4090 | Temp 34C | Util 2% GPU, 0% Memory | VRAM 23.99 GiB total, 23.52 GiB free, 1024.00 KiB used +Aug 22 11:37:04 gpu-rent launch-linux.sh[3481]: 11:37:04.652 [Init] Will use GPU accelerations specific to NVIDIA GeForce RTX 40xx series and newer. +Aug 22 11:37:04 gpu-rent launch-linux.sh[3481]: 11:37:04.653 [Init] SwarmUI v0.9.8.2 - Local is now running. +Aug 22 11:37:18 gpu-rent launch-linux.sh[3481]: 11:37:18.002 [Init] Self-Start ComfyUI-0 on port 7821 started. +Aug 22 11:37:24 gpu-rent launch-linux.sh[3481]: 11:37:24.502 [Info] Creating new session 'local' for 127.0.0.1 +Aug 22 11:37:27 gpu-rent launch-linux.sh[3481]: 11:37:27.344 [Info] Creating new session 'local' for 127.0.0.1 diff --git a/vmlog.txt b/vmlog.txt new file mode 100644 index 0000000..c63f370 --- /dev/null +++ b/vmlog.txt @@ -0,0 +1,80 @@ +104:Aug 22 02:19:52 gpu-rent launch-linux.sh[3313]: 02:19:52.069 [Error] [WebAPI] Error handling API request '/API/AssistentUpsertUserPref' for user 'local': user pref upsert: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +105:Aug 22 02:19:52 gpu-rent launch-linux.sh[3313]: 02:19:52.713 [Error] [WebAPI] Error handling API request '/API/AssistentSaveChat' for user 'local': chat save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +106:Aug 22 02:19:52 gpu-rent launch-linux.sh[3313]: 02:19:52.805 [Error] [WebAPI] Error handling API request '/API/AssistentSaveTaste' for user 'local': taste save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +107:Aug 22 02:20:04 gpu-rent launch-linux.sh[3313]: 02:20:04.270 [Error] [WebAPI] Error handling API request '/API/AssistentSaveUiState' for user 'local': ui-state save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +108:Aug 22 02:20:04 gpu-rent launch-linux.sh[3313]: 02:20:04.518 [Error] [WebAPI] Error handling API request '/API/AssistentSaveChat' for user 'local': chat save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +109:Aug 22 02:20:12 gpu-rent launch-linux.sh[3313]: 02:20:12.188 [Error] [WebAPI] Error handling API request '/API/AssistentUpsertUserPref' for user 'local': user pref upsert: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +110:Aug 22 02:20:12 gpu-rent launch-linux.sh[3313]: 02:20:12.190 [Error] [WebAPI] Error handling API request '/API/AssistentUpsertUserPref' for user 'local': user pref upsert: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +112:Aug 22 02:20:12 gpu-rent launch-linux.sh[3313]: 02:20:12.867 [Error] [WebAPI] Error handling API request '/API/AssistentSaveChat' for user 'local': chat save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +113:Aug 22 02:20:12 gpu-rent launch-linux.sh[3313]: 02:20:12.962 [Error] [WebAPI] Error handling API request '/API/AssistentSaveTaste' for user 'local': taste save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +115:Aug 22 02:20:42 gpu-rent launch-linux.sh[3313]: 02:20:42.670 [Error] [WebAPI] Error handling API request '/API/AssistentSaveUiState' for user 'local': ui-state save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +116:Aug 22 02:20:42 gpu-rent launch-linux.sh[3313]: 02:20:42.672 [Error] [WebAPI] Error handling API request '/API/AssistentSaveChat' for user 'local': chat save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +132:Aug 22 02:24:29 gpu-rent launch-linux.sh[832]: 02:24:29.103 [Init] Prepping extension: Mrleo1nid.SwarmAssistent.SwarmAssistentExtension... +135:Aug 22 02:24:29 gpu-rent launch-linux.sh[832]: 02:24:29.501 [Init] Swarm Assistent extension loaded (settings panel + user prefs + craft memory) +145:Aug 22 02:24:29 gpu-rent launch-linux.sh[832]: 02:24:29.783 [Error] Swarm failed to check for updates! Tag list empty?! +166:Aug 22 02:24:34 gpu-rent launch-linux.sh[832]: 02:24:34.845 [Error] Self-Start ComfyUI-0 on port 7821 failed to start: System.Threading.Tasks.TaskCanceledException: A task was canceled. +195:Aug 22 02:25:04 gpu-rent launch-linux.sh[3481]: 02:25:04.610 [Init] Prepping extension: Mrleo1nid.SwarmAssistent.SwarmAssistentExtension... +199:Aug 22 02:25:04 gpu-rent launch-linux.sh[3481]: 02:25:04.882 [Init] Swarm Assistent extension loaded (settings panel + user prefs + craft memory) +212:Aug 22 02:25:05 gpu-rent launch-linux.sh[3481]: 02:25:05.179 [Error] Swarm failed to check for updates! Tag list empty?! +220:Aug 22 02:25:36 gpu-rent launch-linux.sh[3481]: 02:25:36.526 [Error] [WebAPI] Error handling API request '/API/AssistentGetTaste' for user 'local': taste: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +221:Aug 22 02:25:36 gpu-rent launch-linux.sh[3481]: 02:25:36.528 [Error] [WebAPI] Error handling API request '/API/AssistentGetUiState' for user 'local': ui-state: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +223:Aug 22 02:25:36 gpu-rent launch-linux.sh[3481]: 02:25:36.616 [Error] [WebAPI] Error handling API request '/API/AssistentListChats' for user 'local': chats list: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +224:Aug 22 02:25:37 gpu-rent launch-linux.sh[3481]: 02:25:37.469 [Error] [WebAPI] Error handling API request '/API/AssistentSaveUiState' for user 'local': ui-state save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +225:Aug 22 02:25:38 gpu-rent launch-linux.sh[3481]: 02:25:38.354 [Error] [WebAPI] Error handling API request '/API/AssistentSaveUiState' for user 'local': ui-state save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +226:Aug 22 02:25:38 gpu-rent launch-linux.sh[3481]: 02:25:38.653 [Error] [WebAPI] Error handling API request '/API/AssistentSaveUiState' for user 'local': ui-state save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +227:Aug 22 02:25:38 gpu-rent launch-linux.sh[3481]: 02:25:38.657 [Error] [WebAPI] Error handling API request '/API/AssistentSaveChat' for user 'local': chat save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +228:Aug 22 02:25:45 gpu-rent launch-linux.sh[3481]: 02:25:45.472 [Error] [WebAPI] Error handling API request '/API/AssistentSaveUiState' for user 'local': ui-state save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +229:Aug 22 02:25:45 gpu-rent launch-linux.sh[3481]: 02:25:45.557 [Error] [WebAPI] Error handling API request '/API/AssistentSaveChat' for user 'local': chat save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +230:Aug 22 02:25:46 gpu-rent launch-linux.sh[3481]: 02:25:46.633 [Error] [WebAPI] Error handling API request '/API/AssistentSaveChat' for user 'local': chat save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +231:Aug 22 02:25:52 gpu-rent launch-linux.sh[3481]: 02:25:52.098 [Error] [WebAPI] Error handling API request '/API/AssistentSaveUiState' for user 'local': ui-state save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +232:Aug 22 02:25:52 gpu-rent launch-linux.sh[3481]: 02:25:52.174 [Error] [WebAPI] Error handling API request '/API/AssistentSaveChat' for user 'local': chat save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +233:Aug 22 02:25:55 gpu-rent launch-linux.sh[3481]: 02:25:55.154 [Error] [WebAPI] Error handling API request '/API/AssistentUpsertUserPref' for user 'local': user pref upsert: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +234:Aug 22 02:25:55 gpu-rent launch-linux.sh[3481]: 02:25:55.154 [Error] [WebAPI] Error handling API request '/API/AssistentUpsertUserPref' for user 'local': user pref upsert: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +236:Aug 22 02:25:55 gpu-rent launch-linux.sh[3481]: 02:25:55.725 [Error] [WebAPI] Error handling API request '/API/AssistentSaveChat' for user 'local': chat save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +237:Aug 22 02:25:55 gpu-rent launch-linux.sh[3481]: 02:25:55.821 [Error] [WebAPI] Error handling API request '/API/AssistentSaveTaste' for user 'local': taste save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +243:Aug 22 02:38:36 gpu-rent launch-linux.sh[3481]: 02:38:36.318 [Error] [WebAPI] Error handling API request '/API/AssistentGetTaste' for user 'local': taste: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +244:Aug 22 02:38:36 gpu-rent launch-linux.sh[3481]: 02:38:36.318 [Error] [WebAPI] Error handling API request '/API/AssistentGetUiState' for user 'local': ui-state: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +246:Aug 22 02:38:36 gpu-rent launch-linux.sh[3481]: 02:38:36.399 [Error] [WebAPI] Error handling API request '/API/AssistentListChats' for user 'local': chats list: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +247:Aug 22 02:38:37 gpu-rent launch-linux.sh[3481]: 02:38:37.311 [Error] [WebAPI] Error handling API request '/API/AssistentSaveUiState' for user 'local': ui-state save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +248:Aug 22 02:38:38 gpu-rent launch-linux.sh[3481]: 02:38:38.104 [Error] [WebAPI] Error handling API request '/API/AssistentSaveUiState' for user 'local': ui-state save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +249:Aug 22 02:38:38 gpu-rent launch-linux.sh[3481]: 02:38:38.486 [Error] [WebAPI] Error handling API request '/API/AssistentSaveChat' for user 'local': chat save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +250:Aug 22 02:38:38 gpu-rent launch-linux.sh[3481]: 02:38:38.487 [Error] [WebAPI] Error handling API request '/API/AssistentSaveUiState' for user 'local': ui-state save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +251:Aug 22 02:38:49 gpu-rent launch-linux.sh[3481]: 02:38:49.674 [Error] [WebAPI] Error handling API request '/API/AssistentSaveUiState' for user 'local': ui-state save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +252:Aug 22 02:39:01 gpu-rent launch-linux.sh[3481]: 02:39:01.547 [Error] [WebAPI] Error handling API request '/API/AssistentSaveUiState' for user 'local': ui-state save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +253:Aug 22 02:39:01 gpu-rent launch-linux.sh[3481]: 02:39:01.630 [Error] [WebAPI] Error handling API request '/API/AssistentSaveChat' for user 'local': chat save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +254:Aug 22 02:39:07 gpu-rent launch-linux.sh[3481]: 02:39:07.366 [Error] [WebAPI] Error handling API request '/API/AssistentUpsertUserPref' for user 'local': user pref upsert: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +255:Aug 22 02:39:07 gpu-rent launch-linux.sh[3481]: 02:39:07.369 [Error] [WebAPI] Error handling API request '/API/AssistentUpsertUserPref' for user 'local': user pref upsert: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +257:Aug 22 02:39:07 gpu-rent launch-linux.sh[3481]: 02:39:07.971 [Error] [WebAPI] Error handling API request '/API/AssistentSaveChat' for user 'local': chat save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +258:Aug 22 02:39:08 gpu-rent launch-linux.sh[3481]: 02:39:08.077 [Error] [WebAPI] Error handling API request '/API/AssistentSaveTaste' for user 'local': taste save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +260:Aug 22 02:39:41 gpu-rent launch-linux.sh[3481]: 02:39:41.600 [Error] [WebAPI] Error handling API request '/API/AssistentSaveUiState' for user 'local': ui-state save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +261:Aug 22 02:39:41 gpu-rent launch-linux.sh[3481]: 02:39:41.671 [Error] [WebAPI] Error handling API request '/API/AssistentSaveChat' for user 'local': chat save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +262:Aug 22 02:39:48 gpu-rent launch-linux.sh[3481]: 02:39:48.919 [Error] [WebAPI] Error handling API request '/API/AssistentUpsertUserPref' for user 'local': user pref upsert: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +263:Aug 22 02:39:48 gpu-rent launch-linux.sh[3481]: 02:39:48.924 [Error] [WebAPI] Error handling API request '/API/AssistentUpsertUserPref' for user 'local': user pref upsert: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +265:Aug 22 02:39:49 gpu-rent launch-linux.sh[3481]: 02:39:49.602 [Error] [WebAPI] Error handling API request '/API/AssistentSaveChat' for user 'local': chat save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +266:Aug 22 02:39:49 gpu-rent launch-linux.sh[3481]: 02:39:49.699 [Error] [WebAPI] Error handling API request '/API/AssistentSaveTaste' for user 'local': taste save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +268:Aug 22 02:42:17 gpu-rent launch-linux.sh[3481]: 02:42:17.243 [Error] [WebAPI] Error handling API request '/API/AssistentSaveUiState' for user 'local': ui-state save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +269:Aug 22 02:42:17 gpu-rent launch-linux.sh[3481]: 02:42:17.317 [Error] [WebAPI] Error handling API request '/API/AssistentSaveChat' for user 'local': chat save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +270:Aug 22 02:42:22 gpu-rent launch-linux.sh[3481]: 02:42:22.524 [Error] [WebAPI] Error handling API request '/API/AssistentSaveChat' for user 'local': chat save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +271:Aug 22 02:42:37 gpu-rent launch-linux.sh[3481]: 02:42:37.933 [Error] [WebAPI] Error handling API request '/API/AssistentSaveUiState' for user 'local': ui-state save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +272:Aug 22 02:42:38 gpu-rent launch-linux.sh[3481]: 02:42:38.006 [Error] [WebAPI] Error handling API request '/API/AssistentSaveChat' for user 'local': chat save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +273:Aug 22 02:42:42 gpu-rent launch-linux.sh[3481]: 02:42:42.507 [Error] [WebAPI] Error handling API request '/API/AssistentSaveChat' for user 'local': chat save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +274:Aug 22 02:42:50 gpu-rent launch-linux.sh[3481]: 02:42:50.162 [Error] [WebAPI] Error handling API request '/API/AssistentSaveUiState' for user 'local': ui-state save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +275:Aug 22 02:42:50 gpu-rent launch-linux.sh[3481]: 02:42:50.246 [Error] [WebAPI] Error handling API request '/API/AssistentSaveChat' for user 'local': chat save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +276:Aug 22 02:42:53 gpu-rent launch-linux.sh[3481]: 02:42:53.168 [Error] [WebAPI] Error handling API request '/API/AssistentUpsertUserPref' for user 'local': user pref upsert: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +277:Aug 22 02:42:53 gpu-rent launch-linux.sh[3481]: 02:42:53.169 [Error] [WebAPI] Error handling API request '/API/AssistentUpsertUserPref' for user 'local': user pref upsert: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +279:Aug 22 02:42:53 gpu-rent launch-linux.sh[3481]: 02:42:53.780 [Error] [WebAPI] Error handling API request '/API/AssistentSaveChat' for user 'local': chat save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +280:Aug 22 02:42:53 gpu-rent launch-linux.sh[3481]: 02:42:53.875 [Error] [WebAPI] Error handling API request '/API/AssistentSaveTaste' for user 'local': taste save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +282:Aug 22 02:43:26 gpu-rent launch-linux.sh[3481]: 02:43:26.915 [Error] [WebAPI] Error handling API request '/API/AssistentSaveUiState' for user 'local': ui-state save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +283:Aug 22 02:43:27 gpu-rent launch-linux.sh[3481]: 02:43:27.001 [Error] [WebAPI] Error handling API request '/API/AssistentSaveChat' for user 'local': chat save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +284:Aug 22 02:43:30 gpu-rent launch-linux.sh[3481]: 02:43:30.900 [Error] [WebAPI] Error handling API request '/API/AssistentUpsertUserPref' for user 'local': user pref upsert: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +285:Aug 22 02:43:30 gpu-rent launch-linux.sh[3481]: 02:43:30.901 [Error] [WebAPI] Error handling API request '/API/AssistentUpsertUserPref' for user 'local': user pref upsert: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +287:Aug 22 02:43:31 gpu-rent launch-linux.sh[3481]: 02:43:31.472 [Error] [WebAPI] Error handling API request '/API/AssistentSaveChat' for user 'local': chat save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +288:Aug 22 02:43:31 gpu-rent launch-linux.sh[3481]: 02:43:31.568 [Error] [WebAPI] Error handling API request '/API/AssistentSaveTaste' for user 'local': taste save: Could not load file or assembly 'Microsoft.Data.Sqlite, Version=8.0.11.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified. +305:Aug 22 11:36:27 gpu-rent launch-linux.sh[824]: 11:36:27.420 [Init] Prepping extension: Mrleo1nid.SwarmAssistent.SwarmAssistentExtension... +308:Aug 22 11:36:27 gpu-rent launch-linux.sh[824]: 11:36:27.811 [Init] Swarm Assistent extension loaded (settings panel + user prefs + craft memory) +318:Aug 22 11:36:28 gpu-rent launch-linux.sh[824]: 11:36:28.067 [Error] Swarm failed to check for updates! Tag list empty?! +339:Aug 22 11:36:33 gpu-rent launch-linux.sh[824]: 11:36:33.099 [Error] Self-Start ComfyUI-0 on port 7821 failed to start: System.Threading.Tasks.TaskCanceledException: A task was canceled. +369:Aug 22 11:37:01 gpu-rent launch-linux.sh[3481]: 11:37:01.367 [Error] Build of extension project src/Extensions/swarm-assistent/SwarmAssistentExtension.csproj failed! Raw output: +372:Aug 22 11:37:01 gpu-rent launch-linux.sh[3481]: /opt/swarmui/src/Extensions/swarm-assistent/AssistentTrainingJobs.cs(155,66): error CS0246: The type or namespace name 'WebSocket' could not be found (are you missing a using directive or an assembly reference?) [/opt/swarmui/src/Extensions/swarm-assistent/SwarmAssistentExtension.csproj] +374:Aug 22 11:37:01 gpu-rent launch-linux.sh[3481]: /opt/swarmui/src/Extensions/swarm-assistent/AssistentTrainingJobs.cs(155,66): error CS0246: The type or namespace name 'WebSocket' could not be found (are you missing a using directive or an assembly reference?) [/opt/swarmui/src/Extensions/swarm-assistent/SwarmAssistentExtension.csproj] +394:Aug 22 11:37:03 gpu-rent launch-linux.sh[3481]: 11:37:03.905 [Error] Swarm failed to check for updates! Tag list empty?!