* Correctly sort summary responses

* Consider JinaV2 as a complex model

* Subscribe to record updates in camera watchdog

* Cleanup score showing

* No need to sort review summary

* Add tests for recording summary

* Don't break existing format

* Sort event summary by day
This commit is contained in:
Nicolas Mowen
2025-11-06 08:21:07 -06:00
committed by GitHub
parent a510ea9036
commit 8048168814
6 changed files with 400 additions and 8 deletions
+1 -1
View File
@@ -912,7 +912,7 @@ def events_summary(
"count": int(g.count or 0),
}
return JSONResponse(content=list(grouped.values()))
return JSONResponse(content=sorted(grouped.values(), key=lambda x: x["day"]))
@router.get(