diff --git a/src/raglite/_split_sentences.py b/src/raglite/_split_sentences.py index 1cbeb188..4efa0b35 100644 --- a/src/raglite/_split_sentences.py +++ b/src/raglite/_split_sentences.py @@ -17,7 +17,7 @@ @cache def _load_sat() -> tuple[SaT, dict[str, Any]]: """Load a Segment any Text (SaT) model.""" - sat = SaT("sat-3l-sm") # This model makes the best trade-off between speed and accuracy. + sat = SaT("sat-1l-sm") # This model is small and reasonably accurate. sat_kwargs = {"stride": 128, "block_size": 256, "weighting": "hat"} return sat, sat_kwargs