From cf2e0eed94cb1d5271b0fce1e81470425db44316 Mon Sep 17 00:00:00 2001 From: t3nka <64311316+t3nka@users.noreply.github.com> Date: Fri, 8 May 2026 23:20:08 +1000 Subject: [PATCH 1/2] fix: add ONNX Runtime CUDA 13 nightly index --- pyproject.toml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 98d48138..8b0ddd05 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,11 +3,12 @@ [tool.uv.pip] index-strategy = "unsafe-best-match" -extra-index-url = [ - "https://pypi.nvidia.com", - "https://download.pytorch.org/whl/cu130", - "https://pypi.org/simple" -] +extra-index-url = [ + "https://pypi.nvidia.com", + "https://download.pytorch.org/whl/cu130", + "https://aiinfra.pkgs.visualstudio.com/PublicPackages/_packaging/ort-cuda-13-nightly/pypi/simple/", + "https://pypi.org/simple" +] [tool.mypy] python_version = "3.12" From 5c89ff2b96f094a459d86edefc76c53871b8780c Mon Sep 17 00:00:00 2001 From: t3nka <64311316+t3nka@users.noreply.github.com> Date: Fri, 8 May 2026 23:20:19 +1000 Subject: [PATCH 2/2] chore: move launcher script sources to scripts --- {app/scripts => scripts}/Start.bat | 6 +++--- {app/scripts => scripts}/Start_Portable.bat | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename {app/scripts => scripts}/Start.bat (88%) rename {app/scripts => scripts}/Start_Portable.bat (100%) diff --git a/app/scripts/Start.bat b/scripts/Start.bat similarity index 88% rename from app/scripts/Start.bat rename to scripts/Start.bat index 7d709bec..1d58540d 100644 --- a/app/scripts/Start.bat +++ b/scripts/Start.bat @@ -1,11 +1,11 @@ @echo off -REM Resolve repo root whether this script lives in the repo root or app\scripts. +REM Resolve repo root whether this script lives in the repo root or scripts. SET "SCRIPT_DIR=%~dp0" IF EXIST "%SCRIPT_DIR%main.py" ( SET "REPO_ROOT=%SCRIPT_DIR%" -) ELSE IF EXIST "%SCRIPT_DIR%..\..\main.py" ( - FOR %%A IN ("%SCRIPT_DIR%..\..") DO SET "REPO_ROOT=%%~fA" +) ELSE IF EXIST "%SCRIPT_DIR%..\main.py" ( + FOR %%A IN ("%SCRIPT_DIR%..") DO SET "REPO_ROOT=%%~fA" ) ELSE ( echo [ERROR] Could not locate repo root from "%SCRIPT_DIR%". pause diff --git a/app/scripts/Start_Portable.bat b/scripts/Start_Portable.bat similarity index 100% rename from app/scripts/Start_Portable.bat rename to scripts/Start_Portable.bat