Revert "Reduce gemini partial batch noise"

This reverts commit 3be797131a.
This commit is contained in:
GHStaK
2026-03-18 13:00:41 +09:00
parent 770aea0f57
commit 9a33ecc6b5
4 changed files with 30 additions and 79 deletions
-9
View File
@@ -256,12 +256,3 @@ func TestExtractCompleteRecommendationObjectsReturnsNilWhenArrayMissing(t *testi
t.Fatalf("expected no objects, got %#v", got)
}
}
func TestGeminiVisionMaxOutputTokensShrinksForSingleCandidate(t *testing.T) {
if got := geminiVisionMaxOutputTokens(1); got != 180 {
t.Fatalf("expected 180 tokens for single candidate, got %d", got)
}
if got := geminiVisionMaxOutputTokens(4); got != 420 {
t.Fatalf("expected 420 tokens for four candidates, got %d", got)
}
}