Files
hmo 04db423416 Initial commit: skills library
- 70 skills with code and documentation
- Add .gitignore (ignore __pycache__, output/, temp/, venv/)
- Clean up test intermediates and caches
2026-04-26 19:27:40 +08:00

649 B

Getting Started

1. Set API key

export MINIMAX_API_KEY="<paste-your-key-here>"

2. Install dependencies

pip install requests

# FFmpeg (optional, for audio post-processing)
# macOS:
brew install ffmpeg
# Ubuntu:
sudo apt install ffmpeg

3. Quick test

python scripts/minimax_tts.py "Hello world" -o test.mp3

If successful, you'll see OK: xxxxx bytes -> test.mp3.

Next steps