Batch Generation
Coming Soon
Batch generation is planned for a future release.
Overview
Batch generation will allow creating multiple songs from a single request.
Planned Features
Batch Options
- Generate variations of a prompt
- Multiple prompts in one request
- Automated prompt expansion
Use Cases
- A/B testing different prompts
- Creating album collections
- Exploring variations
API Preview
// Future API
const response = await fetch('/api/generate/batch', {
method: 'POST',
body: JSON.stringify({
prompts: [
'chill lofi beat',
'upbeat electronic',
'dark trap instrumental'
],
variations: 3
})
});
Current Approach
For now, generate songs one at a time:
- Create with prompt
- Regenerate if needed
- Save when satisfied