mirror of
https://github.com/cloudstack-llc/mlx-knife.git
synced 2026-07-01 20:44:14 -04:00
bf7480d042
Major Features: - Audio transcription via mlx-audio backend (Whisper, >10min duration) - OpenAI /v1/audio/transcriptions endpoint - Memory Gate System (Vision: 8GB, Audio: 4GB) - Config-based backend routing (ADR-020) - Benchmark toolchain (memmon/memplot, Schema v0.2.2) Key Fixes: - EuroLLM tokenizer decoding - Vision-model text-only routing regression - Multimodal model context length detection - Memory cleanup bug (mx.metal.clear_cache) - Orphan process bug Test Results: - Unit tests: 647 passed, 11 skipped (Python 3.10-3.12) - wet-umbrella: 171 passed total See CHANGELOG.md for complete details and known issues.
11 lines
352 B
Python
11 lines
352 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.4b9"
|