Skip to main content

How Gumloop pricing behaves at volume.

Gumloop meters work in credits, and AI nodes consume more of them than plumbing nodes do, so the bill tracks how much thinking your flows do.

What credit pricing does to forecasting

Credit models are flexible, which is their advantage and the reason consumption is hard to predict before you run something.

This page explains the shape of the pricing model rather than quoting figures, because plans and credit allowances change. Check gumloop.com for current numbers before deciding.

Gumloopn8n CloudAisle
Billable unitCredits, weighted by node typeWorkflow executionRun, plus model calls
AI stepsMore credits than plumbing nodesModel billed separatelyThe call, at a line you wrote
Adding a non-AI stepSome creditsNothingNothing
Cost known before runningHard to forecastRoughlyYes, calls sit in the code
Running on every recordCredits scale with volumeOne execution per runOne run, calls per item
Retry after partial failureRe-runs and re-consumesRe-runsCheckpoints skip finished items
Billable unit
GumloopCredits, weighted by node type
n8n CloudWorkflow execution
AisleRun, plus model calls
AI steps
GumloopMore credits than plumbing nodes
n8n CloudModel billed separately
AisleThe call, at a line you wrote
Adding a non-AI step
GumloopSome credits
n8n CloudNothing
AisleNothing
Cost known before running
GumloopHard to forecast
n8n CloudRoughly
AisleYes, calls sit in the code
Running on every record
GumloopCredits scale with volume
n8n CloudOne execution per run
AisleOne run, calls per item
Retry after partial failure
GumloopRe-runs and re-consumes
n8n CloudRe-runs
AisleCheckpoints skip finished items

Why credits are hard to forecast for AI work.

A credit model weights consumption by the kind of work a node does, so an AI step costs more than moving a field between two apps. The same flow can therefore consume very different amounts depending on how much text it processes and how many items come through.

  • Consumption depends on the work per item, not just the number of runs.
  • A flow processing long documents costs more than the same flow on short ones.
  • Growth in input volume and growth in per-item cost compound.
  • A retry after a partial failure re-consumes credits for work that already succeeded.

The retry problem is a cost problem.

When a flow fails part way through a batch, re-running it repeats the AI steps that already completed. You pay twice for the same thinking, and any side effects those steps caused happen twice too. On a large batch it is usually the largest avoidable cost in an AI automation.

  • Work that already succeeded gets paid for again.
  • Messages that already sent may send again.
  • The larger the batch, the worse the doubling.
  • Checkpointing is what removes it, by recording which items finished.

Model calls at points you chose.

In a task the model is called from your Python at lines you wrote, so the calls per run are countable by reading the file.

Nothing calls a model unless a line in your file says so, which puts the decision about when to spend tokens with you rather than with an agent. Cache results, checkpoint long runs, and know the bill before it arrives.

  • Call sites are lines in a file, so cost per run is arithmetic.
  • Checkpoints mean a retry never pays again for calls that already returned.
  • A cheap model handles cheap steps, changed by editing one field on the prompt.
  • Caching keeps repeated expensive lookups from being paid for twice across runs.
brief.py
brief = aisle.cache.get_or_set(
    f"brief:{account['domain']}",
    lambda: aisle.ai.run_prompt(slug="account-brief", variables=account),
    ttl="7d",
)

# Cached between runs. No second model call.

Questions

How does Gumloop pricing work?

Gumloop meters work in credits, weighted by the type of node, so AI steps consume more than simple data-moving steps. Plans include a credit allowance. Check gumloop.com for current allowances and prices, since they change.

Is Gumloop expensive for high-volume automations?

It depends on how much work each item needs rather than volume alone. Because AI nodes carry more weight, a flow processing long documents on every record consumes credits considerably faster than one moving fields between apps. Estimate on work per item, not runs per month.

How do I reduce AI automation costs?

Four things do most of the work. Use a small model for easy steps and reserve the large one for hard judgment. Cache expensive lookups so they are not repeated between runs. Checkpoint batch work so a retry does not pay again for completed items. And keep model calls at points you can see, so you can count them.

What is the most predictable way to price an AI automation?

Put the model calls in code at points you chose. When you can read the file and count the calls per item, the monthly cost becomes arithmetic. Any model where consumption is weighted and spread across a visual graph is harder to predict in advance, whatever the headline rate.

Competitor details reviewed . Vendors change plans and features without notice, so check theirs before deciding.

A cost you can work out before you ship.

Model calls at lines you wrote, with checkpoints so a retry never pays twice.