feat: 31 new tests, metrics LLM counters, Dockerfile caching, Makefile targets, compose limits, code fixes

This commit is contained in:
Marker689
2026-05-11 23:08:09 +03:00
parent 20bf7e6745
commit 18efcf482e
26 changed files with 840 additions and 12 deletions

View File

@@ -60,7 +60,11 @@ def _render(name: str, **context) -> HTMLResponse:
def _parse_flagged(value: str) -> bool | None:
return True if value == "1" else None
if value == "1":
return True
if value == "0":
return False
return None
@router.get("/", response_class=HTMLResponse)