Skip to main content

Real-time processing and delivery of sentences from a continuous stream of characters or text chunks.

Project description

Real-Time Sentence Detection

Real-time processing and delivery of sentences from a continuous stream of characters or text chunks.

Table of Contents

Features

  • Generates sentences from a stream of text in real-time.
  • Customizable to finetune/balance speed vs reliability.
  • Option to clean the output by removing links and emojis from the detected sentences.
  • Easy to configure and integrate.

Installation

pip install stream2sentence

Usage

Pass a generator of characters or text chunks to generate_sentences() to get a generator of sentences in return.

Here's a basic example:

from stream2sentence import generate_sentences

# Dummy generator for demonstration
def dummy_generator():
    yield "This is a sentence. And here's another! Yet, "
    yield "there's more. This ends now."

for sentence in generate_sentences(dummy_generator()):
    print(sentence)

This will output:

This is a sentence.
And here's another!
Yet, there's more.
This ends now.

One main use case of this library is enable fast text to speech synthesis in the context of character feeds generated from large language models: this library enables fastest possible access to a complete sentence or sentence fragment (using the quick_yield_single_sentence_fragment flag) that then can be synthesized in realtime. The usage of this is demonstrated in the test_stream_from_llm.py file in the tests directory.

Configuration

The generate_sentences() function has the following parameters:

  • generator: Input character generator. Iterator that emits chunks of text. These chunks can be of any size, and they'll be processed one by one to extract sentences from them. It forms the primary source from which the function reads and generates sentences.

  • context_size: Context size for sentence detection.
    This controls how much context is looked at to detect sentence boundaries. It determines the number of characters around a potential delimiter (like a period) that are considered when detecting sentence boundaries. A larger context size allows more reliable sentence boundary detection, but requires buffering more characters before emitting a sentence.
    Default is 12 characters. Increasing this can help detect sentences more accurately, at the cost of added latency.

  • minimum_sentence_length: Minimum length of a sentence to be detected.
    Specifies the minimum number of characters a chunk of text should have before it's considered a potential sentence. This ensures that very short sequences of characters are not mistakenly identified as sentences.Shorter fragments are ignored and kept in the buffer.
    Default is 10 characters. Increasing this avoids emitting very short sentence fragments, at the cost of potentially missing some sentences.

  • minimum_first_fragment_length: The minimum number of characters required for the first sentence fragment before yielding. This parameter sets a threshold for the length of the initial fragment of text that the function will yield as a sentence. If the first chunk of text does not meet this length requirement, it will be buffered until additional text is received to meet or exceed this threshold. This is important for ensuring the first output is long enough, e.g. to ensure a quality synthesis for text-to-speech applications. Default is 10 characters. Set this according to the needs of the application, balancing between the immediacy of output and the completeness of the text fragment.

  • quick_yield_single_sentence_fragment: Yield a sentence fragment quickly for real-time applications. When set to True, this option allows the function to quickly yield a sentence fragment as soon as it identifies a potential sentence delimiter, without waiting for further context. This is useful for applications like real-time speech synthesis where there's a need for immediate feedback even if the entire sentence isn't complete. Default is False. Set to True for faster but potentially less accurate sentence yields.

  • cleanup_text_links: Option to remove links from the output sentences.
    When set to True, this option enables the function to identify and remove HTTP/HTTPS hyperlinks from the emitted output sentences. This helps clean up the output by avoiding unnecessary links.
    Default is False. Set to True if links are not required in the output.

  • cleanup_text_emojis: Option to remove emojis from the output sentences.
    If True, any Unicode emoji characters are identified and removed from the emitted output sentences. This can help to clean up the output.
    Default is False. Set to True if emojis are not required in the output.

  • tokenize_sentences: (Optional) Function for sentence tokenization. Default is None.

  • tokenizer: Specifies the tokenizer to use ('nltk' or 'stanza'). Default is 'nltk'.

  • language: Language setting for the tokenizer ('en' or 'multilingual' for stanza). Default is 'en'.

  • log_characters: Logs each processed character to the console for debugging. Default is False.

  • sentence_fragment_delimiters: Characters considered as sentence delimiters for yielding quick fragment.

  • force_first_fragment_after_words: Forces the first sentence fragment to yield after a specified number of words. Default is 10 words.

  • log_characters: Option to log characters to the console. When enabled, each character processed by the function is printed to the console. This is mainly for debugging purposes to observe the flow of characters through the function. Default is False. Set to True for a visual representation of characters being processed. Example: allows printing llm output to console when using stream2sentence to prepare input generation for text to speech synthesis.

Contributing

Any Contributions you make are welcome and greatly appreciated.

  1. Fork the Project.
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature).
  3. Commit your Changes (git commit -m 'Add some AmazingFeature').
  4. Push to the Branch (git push origin feature/AmazingFeature).
  5. Open a Pull Request.

License

This project is licensed under the MIT License. For more details, see the LICENSE file.


Project created and maintained by Kolja Beigel.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

stream2sentence-0.2.3.tar.gz (10.7 kB view hashes)

Uploaded Source

Built Distribution

stream2sentence-0.2.3-py3-none-any.whl (7.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page