40 lines
853 B
Markdown
40 lines
853 B
Markdown
# diarization-ui
|
|
|
|
Eigenes UI-Projekt (separates Repo/Container) für:
|
|
- Upload Audio
|
|
- Aufruf von `transcribe-diarize` API
|
|
- Speichern in SQLite
|
|
- LLM-Auswertung via Ollama (Qwen)
|
|
|
|
## .env
|
|
|
|
```env
|
|
API_BASE=http://gx10.aquantico.lan:8093
|
|
OLLAMA_BASE_URL=http://gx10.aquantico.lan:11434
|
|
OLLAMA_MODEL=qwen3.5:9b
|
|
```
|
|
|
|
## Start (Docker/Compose)
|
|
|
|
```bash
|
|
cp .env.example .env
|
|
docker compose up -d --build
|
|
```
|
|
|
|
UI: `http://127.0.0.1:8094/`
|
|
|
|
## Podman (einzelner Container)
|
|
|
|
```bash
|
|
podman build -t localhost/diarization-ui:latest .
|
|
podman rm -f diarization-ui || true
|
|
podman run -d --name diarization-ui -p 18094:8094 \
|
|
-e API_BASE=http://gx10.aquantico.lan:8093 \
|
|
-e OLLAMA_BASE_URL=http://gx10.aquantico.lan:11434 \
|
|
-e OLLAMA_MODEL=qwen3.5:9b \
|
|
-v diarization_ui_data:/data \
|
|
localhost/diarization-ui:latest
|
|
```
|
|
|
|
UI dann: `http://127.0.0.1:18094/`
|