Files
pi-skill/skills/references/env-setup.md
2026-05-25 16:41:08 +07: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