Module livekit.blingfire

Sub-modules

livekit.blingfire.version

Functions

def text_to_sentences(text: str) ‑> str
Expand source code
def text_to_sentences(text: str) -> str:
    return _cext.text_to_sentences(text)
def text_to_sentences_with_offsets(text: str) ‑> tuple[str, list[tuple[int, int]]]
Expand source code
def text_to_sentences_with_offsets(
    text: str,
) -> tuple[str, list[tuple[int, int]]]:
    return _cext.text_to_sentences_with_offsets(text)
def text_to_words(text: str) ‑> str
Expand source code
def text_to_words(text: str) -> str:
    return _cext.text_to_words(text)
def text_to_words_with_offsets(text: str) ‑> tuple[str, list[tuple[int, int]]]
Expand source code
def text_to_words_with_offsets(
    text: str,
) -> tuple[str, list[tuple[int, int]]]:
    return _cext.text_to_words_with_offsets(text)