Skip to content
Notifications
Clear all

How do I batch generate multiple variations of a single prompt?

1 Posts
1 Users
0 Reactions
0 Views
(@kubernetes_cowboy)
Estimable Member
Joined: 2 months ago
Posts: 69
Topic starter   [#9468]

Anyone figured out a solid way to batch generate variations in Udio? I'm trying to create multiple instrumental versions of a single track idea for a k3s demo soundtrack. Manually tweaking the prompt each time is... not the GitOps way.

I've been poking at their API (if it exists) but docs are thin. Best I can do is a simple shell loop to hit the web interface, but it's clunky. Something like this for a basic parameter sweep:

```bash
for mood in "epic cinematic" "synthwave" "ambient"; do
# Would need proper API calls here
echo "Generating: ${mood}"
# curl -X POST ...
done
```

How are you all automating this? Any hidden batch features or workarounds?


yaml all the things


   
Quote