5.15 (propagare design + dashboard editare) si 5.14 (mapare LLM distilata) inchise dupa /code-review high. 8 buguri reparate TDD: - HIGH modal nu se deschidea pe randul slim (base.html: trimitere-slim) - HIGH /repune trunchia prestatii (declaratie incompleta la RAR) -> iterare peste existing, codes pozitional - HIGH embeddings incarca model ~230MB degeaba pe corpus gol -> poarta has_corpus() - HIGH picker chips gol pe re-render eroare -> conn/account_id pe toate ramurile - MED obs re-derivat dupa stergere explicita -> _merge_override pastreaza obs='' - MED mapare salvata fara denumire poluă GOLD -> _record_gold_validation guard - MED typo nome_prestatie -> nume_prestatie in select /repune - MED bucketare timp +3h gresita iarna -> SQLite localtime + TZ=Europe/Bucharest Embeddings WIRE-uit functional (PRD #15, decizie user): ensure_embeddings_corpus construieste corpus din nomenclator, gated pe AUTOPASS_EMBEDDINGS_ENABLED (default off). Marime model corectata ~50MB->~230MB (estimare PRD gresita). Cleanup: hoist load_* din bucla bulk-fix; import re la top. Regresie: 1256 passed, 1 deselected (live), 0 failed. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
28 lines
1.1 KiB
Plaintext
28 lines
1.1 KiB
Plaintext
# Gateway RAR AUTOPASS — dependinte runtime
|
|
# Versiuni aliniate la ce e instalat in container (2026-06-15).
|
|
fastapi==0.115.0
|
|
uvicorn[standard]==0.30.0
|
|
httpx==0.27.*
|
|
jinja2==3.1.*
|
|
pydantic==2.8.2
|
|
pydantic-settings==2.*
|
|
python-multipart==0.0.*
|
|
# SessionMiddleware (app/main.py) semneaza cookie-urile de sesiune via itsdangerous.
|
|
# Necesar explicit: nu e tras tranzitiv in imaginea Docker, doar in dev local.
|
|
itsdangerous==2.2.0
|
|
# Fuzzy lookup pentru editorul de mapari operatii (app/mapping.py). Pur Python/C, fara build extern.
|
|
rapidfuzz==3.14.5
|
|
# Criptare creds RAR efemere in submissions (app/crypto.py, Fernet). Zero-storage at rest.
|
|
cryptography==46.0.5
|
|
|
|
# Parsare xlsx/xls pentru import fisiere (Treapta 2, Issue 4 — PINNED).
|
|
openpyxl==3.1.5
|
|
|
|
# Migrare DBF (tools/import_dbf.py). Necesar doar pentru import optional, nu pentru runtime.
|
|
dbfread==2.0.7
|
|
|
|
# Embeddings in-proces pentru sugestie cod RAR (L14-S4, PRD 5.14 Decision #16).
|
|
# Model multilingv (~230MB pe disc, ONNX quantizat), fastembed fara torch, lazy-load la runtime.
|
|
# Degradare gratioasa daca lipseste la runtime (is_available()=False, suggest_nearest=[]).
|
|
fastembed>=0.8.0
|