remdms Claude Opus 4.6 commited on
Commit
2c36755
·
1 Parent(s): f4eb869

fix(test): increase retrieval latency budget to 1000ms for reranker

Browse files
Files changed (1) hide show
  1. tests/test_rag_benchmark.py +2 -2
tests/test_rag_benchmark.py CHANGED
@@ -219,9 +219,9 @@ class TestRetrieval:
219
 
220
 
221
  class TestLatency:
222
- """Response time must stay under 5s total (retrieval budget: 500ms)."""
223
 
224
- RETRIEVAL_BUDGET_MS = 500
225
 
226
  @pytest.mark.parametrize(
227
  "query",
 
219
 
220
 
221
  class TestLatency:
222
+ """Response time must stay under 5s total (retrieval budget: 1000ms with reranker)."""
223
 
224
+ RETRIEVAL_BUDGET_MS = 1000
225
 
226
  @pytest.mark.parametrize(
227
  "query",