From 75c8cd9930c1e70698bb8d88f51ef0c60f1dff3f Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 7 Jun 2026 01:24:10 -0400 Subject: [PATCH] Stopword grammatical fillers for internal rhymes The Ringer stress test: anaphora (don't/just/like/gonna/wanna/'cause/ even/me) lit up dozens of false internal rhymes. Fillers now only count at line endings, where their use is deliberate. Co-Authored-By: Claude Opus 4.8 (1M context) --- app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app.py b/app.py index c92f9a1..069e5cc 100644 --- a/app.py +++ b/app.py @@ -44,7 +44,8 @@ STOPWORDS = frozenset( do does did to too so no not nor that this these those with for from has had have what when then than there here you your we he she they them his her our us if by my em im 's t s d ll re ve - i'm i'll i'd i've it's that's you're we're they're he's she's""".split() + i'm i'll i'd i've it's that's you're we're they're he's she's + just like gonna wanna cause don't won't ain't yeah even me""".split() )