Increase snapshot model limit to 20

This commit is contained in:
Evan Yang
2026-03-13 15:55:29 +08:00
parent d9d082ad5c
commit 09e7f1f0bf
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ PUBLISH_INTERVAL_SECONDS = 15 * 60
DISABLED_POLL_SECONDS = 60
DASHBOARD_WINDOW_HOURS = 24
DASHBOARD_INTERVAL_MINUTES = 60
MODEL_LIMIT = 10
MODEL_LIMIT = 20
WINDOW_DEFINITIONS: tuple[tuple[str, int, int], ...] = (
("24h", 24, 60),
("7d", 7 * 24, 6 * 60),
+1 -1
View File
@@ -79,7 +79,7 @@ def test_build_stats_snapshot_payload_schema_and_shape(monkeypatch: Any) -> None
) -> dict[str, Any]:
seen_windows.add((hours, interval))
assert error_limit == 1
assert model_limit == 10
assert model_limit == 20
return {
"summary": {
"total_requests": hours,