Skip to main content

Pure MLX MiniMax-H3 text-to-video-and-audio inference for Apple Silicon.

Project description

mlx-h3

Pure MLX MiniMax-H3 text-to-video-and-audio inference for Apple Silicon.

Pre-release PyPI Python Apple Silicon MLX

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.1a2 GitHub 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 simple schedule steps with the second-order res_multistep solver.
  • 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
  • ffmpeg available on PATH
  • 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mlx_h3-0.0.1a2.tar.gz (52.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mlx_h3-0.0.1a2-py3-none-any.whl (60.7 kB view details)

Uploaded Python 3

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

Hashes for mlx_h3-0.0.1a2.tar.gz
Algorithm Hash digest
SHA256 3759b5ddf6282804793f5dcdc6d56b3cf55da5a26658802bb4f5f01314c3f9fc
MD5 b629d769d87b71781dd2338c813056f2
BLAKE2b-256 83af91eefb499157be55058de875822085c1bd11561a0c5abc1792d73d36a0bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlx_h3-0.0.1a2.tar.gz:

Publisher: workflow.yml on appautomaton/mlx-h3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for mlx_h3-0.0.1a2-py3-none-any.whl
Algorithm Hash digest
SHA256 a986b84b7f69b1613f86eae68cf8194a688859bd2ee9068b41cdfe28afad3281
MD5 9340e81a4f7573e891ad845c8c1db4ce
BLAKE2b-256 b8d2aefcca61ac67d95f74357f280a97233fc81ca1bc81e9a8f6d222c712d6ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for mlx_h3-0.0.1a2-py3-none-any.whl:

Publisher: workflow.yml on appautomaton/mlx-h3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page