Pure MLX MiniMax-H3 text-to-video-and-audio inference for Apple Silicon.
Project description
mlx-h3 is an independent, pure-MLX inference runtime for
MiniMax-H3. It generates video and
stereo audio jointly, keeps model residency phase-scoped, and targets large-memory
Apple silicon systems without using PyTorch at runtime.
[!IMPORTANT] This project is pre-alpha. This package version is released as the
v0.0.1a2GitHub pre-release. Model files are not included in the repository or PyPI package.
Why mlx-h3
- Joint audio and video — one DiT denoises both modalities in a shared sequence.
- Pure MLX runtime — no PyTorch execution and no CUDA dependency.
- Bounded model residency — text encoder, DiT, Video VAE, and Audio VAE load and release in separate phases.
- Current sampling baseline — 20
simpleschedule steps with the second-orderres_multistepsolver. - Dependency-light tokenizer — byte-level BPE implemented locally from
tokenizer.json. - Fail-fast memory guard — configurable active-memory budget and swap detection.
Current scope
| Capability | Status |
|---|---|
| Text-to-video-and-audio (T2VA) | Working |
| Synchronized H.264/AAC MP4 output | Working |
| 8-bit DiT and text encoder loading | Working |
| First/last-frame conditioning (FL2VA) | Working |
| Ordered image/video/audio references (Ref2VA) | Working |
| Reference-video soundtrack conditioning | Working |
| Context-IR and 2K regeneration | Not available locally |
Requirements
- Apple silicon Mac
- macOS with a recent MLX-compatible toolchain
- Python 3.13 or newer
ffmpegavailable onPATH- Local MiniMax-H3 tokenizer and checkpoints
- Enough unified memory for the selected canvas and frame count
The default runtime memory budget is 70 GiB. It is a guardrail, not a promise that every system workload will remain swap-free.
Install
From a local checkout:
git clone https://github.com/appautomaton/mlx-h3.git
cd mlx-h3
uv sync
Install the current PyPI pre-release:
uv tool install --prerelease allow mlx-h3==0.0.1a2
Local model layout
Model files stay outside version control. The default paths are:
weights/
├── tokenizer/tokenizer.json
├── mlx-8bit/te_qwen3vl_a8g32.safetensors
├── mlx-8bit/dit_fl2va_a8g32.safetensors
├── mlx-8bit/dit_ref2va_a8g32.safetensors
└── bf16/vae/
├── minimax_h3_video_vae_fp16.safetensors
└── minimax_h3_audio_vae_fp32.safetensors
Dense DiT and text-encoder weights may be retained locally for requantization, but inference never loads them. The dense Video VAE and Audio VAE checkpoints are runtime inputs.
Generate
Keep private input text in your shell environment rather than a tracked file:
uv run mlx-h3 "$MLX_H3_INPUT_TEXT" \
--width 512 \
--height 288 \
--frames 124 \
--steps 20 \
--seed 42 \
--output outputs/result.mp4
Long structured prompts can instead stay in an untracked UTF-8 file:
uv run mlx-h3 --prompt-file "$MLX_H3_PROMPT_FILE" \
--width 768 \
--height 448 \
--frames 124 \
--steps 10 \
--output outputs/preview.mp4
Conditioning inputs are explicit. --first-frame and --last-frame select the
FL2VA path. Repeat --ref-image, --ref-video, and --ref-audio in the order
Ref2VA should read them; use --ref-video-silent to ignore embedded audio or
--ref-video-with-audio VIDEO AUDIO to override a video's soundtrack.
Canvas dimensions must be multiples of 32 and may not exceed 768 * 1344 pixels.
Frame requests are aligned to the Video VAE's 17n + 5 rule and capped at the
released 15-second limit. Use --steps 10 for a faster preview; --steps 20 is the
quality baseline.
Run uv run mlx-h3 --help for checkpoint path overrides and all generation options.
Memory model
The pipeline intentionally keeps only one large model phase resident at a time:
reference encoders -> release -> text/vision encode -> release
-> joint denoise -> release -> video decode -> release
-> audio decode -> release -> mux
Safety checks remain enabled in release runs. Scalar telemetry is emitted only when a callback is attached, so normal inference does not retain diagnostic tensors or model objects.
Development
uv run ruff check .
uv run pytest -q
python dev/check_public_tree.py
uv build --no-sources
The public-tree check rejects model files, media, private inputs, generated artifacts, large files, hidden local state, symlinks, and structured private prompt payloads. A local pre-commit hook runs the same check against staged files.
Reference notes live in docs/: architecture (what H3 is), weights (what is on disk), porting (validation and pitfalls).
Project identity
- Distribution and CLI:
mlx-h3 - Python import package:
mlx_h3 - Repository: appautomaton/mlx-h3
- Runtime: pure MLX on Apple silicon
This project is not affiliated with or endorsed by MiniMax.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mlx_h3-0.0.1a2.tar.gz.
File metadata
- Download URL: mlx_h3-0.0.1a2.tar.gz
- Upload date:
- Size: 52.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3759b5ddf6282804793f5dcdc6d56b3cf55da5a26658802bb4f5f01314c3f9fc
|
|
| MD5 |
b629d769d87b71781dd2338c813056f2
|
|
| BLAKE2b-256 |
83af91eefb499157be55058de875822085c1bd11561a0c5abc1792d73d36a0bb
|
Provenance
The following attestation bundles were made for mlx_h3-0.0.1a2.tar.gz:
Publisher:
workflow.yml on appautomaton/mlx-h3
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mlx_h3-0.0.1a2.tar.gz -
Subject digest:
3759b5ddf6282804793f5dcdc6d56b3cf55da5a26658802bb4f5f01314c3f9fc - Sigstore transparency entry: 2345667999
- Sigstore integration time:
-
Permalink:
appautomaton/mlx-h3@c7afa95dc0a4633c24eb1ae7cab22a9835b00d83 -
Branch / Tag:
refs/tags/v0.0.1a2 - Owner: https://github.com/appautomaton
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
workflow.yml@c7afa95dc0a4633c24eb1ae7cab22a9835b00d83 -
Trigger Event:
release
-
Statement type:
File details
Details for the file mlx_h3-0.0.1a2-py3-none-any.whl.
File metadata
- Download URL: mlx_h3-0.0.1a2-py3-none-any.whl
- Upload date:
- Size: 60.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a986b84b7f69b1613f86eae68cf8194a688859bd2ee9068b41cdfe28afad3281
|
|
| MD5 |
9340e81a4f7573e891ad845c8c1db4ce
|
|
| BLAKE2b-256 |
b8d2aefcca61ac67d95f74357f280a97233fc81ca1bc81e9a8f6d222c712d6ec
|
Provenance
The following attestation bundles were made for mlx_h3-0.0.1a2-py3-none-any.whl:
Publisher:
workflow.yml on appautomaton/mlx-h3
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mlx_h3-0.0.1a2-py3-none-any.whl -
Subject digest:
a986b84b7f69b1613f86eae68cf8194a688859bd2ee9068b41cdfe28afad3281 - Sigstore transparency entry: 2345668126
- Sigstore integration time:
-
Permalink:
appautomaton/mlx-h3@c7afa95dc0a4633c24eb1ae7cab22a9835b00d83 -
Branch / Tag:
refs/tags/v0.0.1a2 - Owner: https://github.com/appautomaton
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
workflow.yml@c7afa95dc0a4633c24eb1ae7cab22a9835b00d83 -
Trigger Event:
release
-
Statement type: