Initial version of gui for our T-SQL AI framework.

This commit is contained in:
2026-02-19 14:46:03 +01:00
commit c28cce4086
8 changed files with 708 additions and 0 deletions

27
docs/installation.md Normal file
View File

@@ -0,0 +1,27 @@
# Installation
## Arch Linux (Pacman)
```bash
sudo pacman -S pyside6 python-requests
```
## venv (optional)
```bash
python -m venv .venv
source .venv/bin/activate
pip install PySide6 requests
```
## Start (Wayland/Hyprland)
```bash
python sql_ai_gui.py
```
Falls nötig:
```bash
QT_QPA_PLATFORM=wayland python sql_ai_gui.py
```
## Ollama (Docker) Minimal
```bash
docker run -d --name ollama --restart unless-stopped -p 127.0.0.1:11434:11434 -v /mnt/data/ollama:/root/.ollama ollama/ollama:latest
```