Appearance
Music Runtime
This page covers the native music-generation path exposed through mere.run music generate.
Public surface
mere.run music generate
Model family
music-acestep
Typical workflow
bash
swift run mere.run music generate \
"upbeat electronic groove" \
--output ./track.wavRuntime entrypoints
CLI
Sources/MereRunCLI/Commands/MusicGenerateCommand.swift
Runtime
Sources/MereRunCore/ACEStep/ACEStepPipeline.swiftSources/MereRunCore/ACEStep/ACEStepPipeline+Prompting.swiftSources/MereRunCore/ACEStep/ACEStepPipeline+Generation.swift
Reading order
The ACEStep runtime now follows a clean phase split:
ACEStepPipeline.swiftfor the public pipeline and orchestrationACEStepPipeline+Prompting.swiftfor prompt preparation and conditioningACEStepPipeline+Generation.swiftfor the generation path itself
That makes it much easier to follow than a single pipeline monolith.
Contributor notes
- this is a native Swift/MLX path, not a Python bridge
- model resolution and storage still follow the same canonical public rules as the rest of the repo