Text-to-Audio
Diffusers
Safetensors
PyTorch
minimax_music3
music-generation
text-to-music
sglang-omni
Instructions to use MiniMaxAI/MiniMax-Music3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use MiniMaxAI/MiniMax-Music3 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("MiniMaxAI/MiniMax-Music3", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -110,11 +110,11 @@ We recommend the following inference frameworks to serve the model:
|
|
| 110 |
|
| 111 |
- [SGLang](https://docs.sglang.io/) \- see [cookbook](https://sgl-project.github.io/sglang-omni/cookbook/minimax_music3.html)
|
| 112 |
|
| 113 |
-
- [diffusers](https://github.com/huggingface/diffusers) \- see [diffusers docs](https://
|
|
|
|
|
|
|
| 114 |
|
| 115 |
-
- [ComfyUI](https://github.com/Comfy-Org/ComfyUI) \- see [Comfy tutorial](https://docs.comfy.org/tutorials/video/minimax/minimax-h3);
|
| 116 |
|
| 117 |
-
-
|
| 118 |
### Serve with SGLang-Omni
|
| 119 |
|
| 120 |
```bash
|
|
|
|
| 110 |
|
| 111 |
- [SGLang](https://docs.sglang.io/) \- see [cookbook](https://sgl-project.github.io/sglang-omni/cookbook/minimax_music3.html)
|
| 112 |
|
| 113 |
+
- [diffusers](https://github.com/huggingface/diffusers) \- see [diffusers docs](https://github.com/huggingface/diffusers/blob/minimax-music3-integration/docs/source/en/api/pipelines/minimax_music3.md)
|
| 114 |
+
|
| 115 |
+
- [ComfyUI](https://github.com/Comfy-Org/ComfyUI)
|
| 116 |
|
|
|
|
| 117 |
|
|
|
|
| 118 |
### Serve with SGLang-Omni
|
| 119 |
|
| 120 |
```bash
|