mirror of
https://github.com/cloudstack-llc/mlx-knife.git
synced 2026-08-27 02:01:29 -04:00
e021fb32cd
Audio/Whisper works with pip install - no Git workaround needed. See CHANGELOG.md for details. Tested: 647 passed, 11 skipped (Python 3.10-3.12)
10 lines
253 B
Python
10 lines
253 B
Python
"""Audio support module for mlxk2.
|
|
|
|
Contains workarounds for mlx-audio regressions, specifically:
|
|
- Whisper tokenizer (tiktoken-based) for Issue #479
|
|
"""
|
|
|
|
from .whisper_tokenizer import Tokenizer, get_tokenizer
|
|
|
|
__all__ = ["Tokenizer", "get_tokenizer"]
|