Skip to content

πŸš€ Chunklet-py v2.0.1 - Patch Release

Choose a tag to compare

@speedyk-005 speedyk-005 released this 20 Nov 17:51
· 126 commits to main since this release

This is a patch release that addresses a critical bug in the split command of the CLI.

🐞 Bug Fixes

  • CLI Bug: Fixed a critical unpacking bug in the split command. The line intended to extract sentences and confidence from splitter.split (e.g.,
    sentences, confidence = splitter.split(...)) caused either a ValueError (if splitter.split returned a number of sentences other than exactly
    two) or silent, incorrect unpacking (if exactly two sentences were returned, assigning the first sentence string to sentences and the second to
    confidence, leading to character-level iteration). The fix now correctly separates language detection and confidence retrieval from sentence
    splitting, resolving both issues and ensuring accurate output.

πŸ“‘ Documentaion

  • Documentation for installing optional and development dependencies has been updated and clarified.

You can view the full details in the Changelog.