Skip to content

v0.2.0/1073 2026-04-12

Choose a tag to compare

@HarinezumIgel HarinezumIgel released this 12 Apr 15:17
Immutable release. Only release title and notes can be modified.

What's New

Added

WordNet Synonym Expansion for Banned-Word Scoring

  • New Synonyms singleton (src/Algos/Synonyms.py) expands banned-word lists with WordNet synonyms for BM25Scorer, JaccardScorer, and RegexScorer. KeyBertScorer is excluded (embeddings already capture semantic neighbours).
  • Configurable via _WORDNET block: ENABLED, DEPTH, MAX_SYNONYMS_PER_PHRASE, POS_FILTER, STOPLIST.
  • Lazy WordNet import with graceful fallback. Result caching. Multi-word phrase and breadth-first traversal support.

Fixed

CLI Cursor Positioning

  • Replaced pyreadline3 with prompt_toolkit in HistoryManager.py. Fixes cursor displacement caused by ANSI escape codes and emoji in the prompt string.