mirror of
https://github.com/QuentinFuxa/WhisperLiveKit.git
synced 2026-03-07 22:33:36 +00:00
### Added
- `get_inline_ui_html()`: generates a self-contained version of the web interface, with CSS, JS, and SVG assets inlined directly into the HTML. useful for environments where serving static files is inconvenient or when a single-call UI delivery is preferred.
(cherry picked from commit aa44a92a67)
14 lines
368 B
Python
14 lines
368 B
Python
from .audio_processor import AudioProcessor
|
|
from .core import TranscriptionEngine
|
|
from .parse_args import parse_args
|
|
from .web.web_interface import get_web_interface_html, get_inline_ui_html
|
|
|
|
__all__ = [
|
|
"TranscriptionEngine",
|
|
"AudioProcessor",
|
|
"parse_args",
|
|
"get_web_interface_html",
|
|
"get_inline_ui_html",
|
|
"download_simulstreaming_backend",
|
|
]
|