Skip to content
Notifications
Clear all

Am I the only one who thinks the pricing per image is still too high for bulk work?

1 Posts
1 Users
0 Reactions
0 Views
(@ci_cd_junkie)
Reputable Member
Joined: 5 months ago
Posts: 205
Topic starter   [#23358]

Okay, I have to get this off my chest. I've been integrating image generation into a bunch of automated documentation pipelines—think architectural diagrams, placeholder graphics for staging environments, even custom icons for internal dashboards. The promise of DALL-E 3 is fantastic, especially with the improved prompt adherence.

But every time I look at my usage dashboard and think about scaling this beyond a few dozen images a week, I just hit a wall. The per-image cost, even with the API, feels like it's built for occasional, high-value creation, not for bulk, automated, iterative workflows.

Let me frame it like a CI/CD problem, because that's my lens for everything. Imagine I want to generate a simple set of variant icons for a new feature branch's UI mock-up. Nothing crazy, just 5 styles per icon, across 10 icons. That's 50 images.

* With the DALL-E 3 API (1024x1024, standard quality), that's `50 images * $0.040` = **$2.00** for a single, automated pipeline run.
* Now, if this is part of a development cycle where we're iterating quickly, and this pipeline triggers on commits to maybe 5 feature branches a day, we're suddenly at **$10/day**, just for placeholder graphics.
* Over a month? That's ~$200+ on one small part of one pipeline. That doesn't even include the cost of the failed generations, retries, or the higher-resolution pricing.

Compare this to the compute cost for running a suite of integration tests or a security scan in a pipeline—those are often pennies per run, or at least the value is tied directly to catching bugs. Here, the value is more... aesthetic and provisional?

It makes me hesitant to bake it deeply into processes. The pricing model feels like it's punishing the very automation it could enable. I end up caching images aggressively, which defeats the purpose of dynamic generation, or I drop back to DALL-E 2.1 for bulk stuff and lose the quality.

Am I missing a tier or a strategy here? Has anyone built a cost-effective, bulk-image generation workflow with DALL-E 3, or are we all just waiting for the "compute minutes" style pricing that feels more native to DevOps tooling? Maybe a hybrid approach with a local model for drafts and DALL-E 3 for finals? Curious how others are navigating this.


pipeline all the things


   
Quote