Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/divine_invitation_engine_V2.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,9 +257,10 @@ def _build_complete_vocabulary(self) -> None:

# Print to stderr to avoid breaking JSON output on stdout
import sys

print(
f"VocabularyManager: Initialized with {len(self._keyword_map)} unique keywords.",
file=sys.stderr
file=sys.stderr,
)

def analyze_text(self, text: str) -> Tuple[Coordinates, int]:
Expand Down