mirror of
https://github.com/cloudstack-llc/mlx-knife.git
synced 2026-07-01 20:44:14 -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)
11 lines
353 B
Python
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"
|