Understanding AI cost
Where the money goes, and the few decisions that actually move it.
The shape of the cost
Two separate bills. Infrastructure is a monthly floor that exists whether or not anyone generates anything, dominated by the database. AI is per unit of work, dominated by course generation.
For a course, the expensive part is usually not what people expect: rich media generation typically costs more than the language model work behind lesson plans and questions.
What drives it
Controls that are already in place
- Tiered models. Vision work does not run on the model used for curriculum reasoning.
- A tight rate limit on LLM endpoints, far tighter than general API limits, because their cost is measured in tokens.
- Content-addressed checkpoints in podcast generation, so a retry does not re-synthesise audio it already produced.
- Durable jobs, so a deploy does not force a repeat.
- Cached report queries per institution.
What actually saves money
In order of impact: get the syllabus right before extraction so you are not regenerating from a bad structure; clone courses instead of re-running the pipeline on an unchanged syllabus; regenerate individual artefacts rather than whole courses; and generate media for the lessons that need it rather than for everything by default.