feat(epub_examples): lower MIN_WORDS from 4 to 3

Hebrew is more concise than English — 3-word sentences are valid
candidates for the example sentence pool. Expands the pool for the
upcoming adaptive sentence difficulty ranking.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Sochen 2026-03-15 13:18:44 +00:00
parent d0f4aea58d
commit d2a7c9d483

View file

@ -57,7 +57,7 @@ def _discover_epubs() -> dict[str, str]:
# Sentence length bounds (word count)
MIN_WORDS = 4
MIN_WORDS = 3
MAX_WORDS = 15