Hi Sumy maintainers 👋,
First off, thank you for maintaining this project it's been super helpful for building quick and efficient extractive summarization tools.
I’d like to suggest adding type hints and possibly integrating type checking across the codebase.
💡 Why This Matters
- Type hints improve code readability and documentation.
- Type checking helps catch bugs early during development.
- It makes the project more developer-friendly and encourages community contributions from those using modern Python tooling.
🔧 Example
def summarize(text: str, sentence_count: int = 3) -> List[str]:
Hi Sumy maintainers 👋,
First off, thank you for maintaining this project it's been super helpful for building quick and efficient extractive summarization tools.
I’d like to suggest adding type hints and possibly integrating type checking across the codebase.
💡 Why This Matters
🔧 Example