Files
mlx-knife/mlxk2/__init__.py
T
The BROKE Cluster Team e021fb32cd Release 2.0.4-beta.10: Audio PyPI fix (tiktoken workaround complete)
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)
2026-02-05 10:42:50 +01:00

11 lines
353 B
Python

"""MLX-Knife - HuggingFace model management for MLX."""
# Suppress urllib3 LibreSSL warning on macOS system Python 3.9
# (must run before any imports that may indirectly import urllib3)
import warnings
# Issue parity with 1.1.0 (Issue #22)
warnings.filterwarnings('ignore', message='urllib3 v2 only supports OpenSSL 1.1.1+')
__version__ = "2.0.4b10"