Updated UI, now with new base model

This commit is contained in:
2026-04-09 15:29:20 +02:00
parent 2104bfc74a
commit 79f58e82bc
2 changed files with 1807 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -euo pipefail
APP_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
# Wayland bevorzugen (Hyprland)
export QT_QPA_PLATFORM="${QT_QPA_PLATFORM:-wayland}"
# Optional: Wenn du einen venv nutzt
if [[ -x "$APP_DIR/.venv/bin/python" ]]; then
exec "$APP_DIR/.venv/bin/python" "$APP_DIR/sql_ai_gui_local_ollama_qwen3.py"
else
exec python "$APP_DIR/sql_ai_gui_local_ollama_qwen3.py"
fi
File diff suppressed because it is too large Load Diff