Intro To Billing
This article mainly introduces the billing methods and pricing for image generation capabilities. Other unpaid capabilities are currently in public testing phase and can be used for free.
Price of publication
$0.003/credit
Gift | Workspace API(SD WebUI like) | Workflow API (ComfyUI like) | AI Tools | 4080/4090 | Free website membership account | Support the use of self-selected Models / AI Tools list | |
---|---|---|---|---|---|---|---|
First Login | 1k Credits for free | ✅ | ✅ | ✅ | 4080-Equivalent | ❌ | ❌ |
Purchase 10k Credits | / | ✅ | ✅ | ✅ | 4080-Equivalent | ❌ | ❌ |
Purchase 100k Credits | 5k Credits | ✅ | ✅ | ✅ | 4080-Equivalent | ✅ | ❌ |
Purchase 1,000k Credits | 100k Credits | ✅ | ✅ | ✅ | 4090-Equivalent | ✅ | ✅ |
Purchase 10,000k Credits | 2,500k Credits | ✅ | ✅ | ✅ | 4090-Equivalent | ✅ | ✅ |
Advanced customization plan | Contact Us | ✅ | ✅ | ✅ | 4090-Equivalent | ✅ | ✅ |
Credit
A credit is a unit of currency expended when generating images with TAMS or after submitting a request to our API. Credit usage scales according to the compute required to complete your request.
Calculation Formula for Credits:
The four factors that currently affect Credits are:
WIDTH
,HEIGHT
STEPS
COUNT
(The number of generated images)MODEL_FACTOR
(based on whetherSD
orSDXL
is being used)
The coefficients for the current SDXL
model are temporarily discounted and consistent with SD
, with all coefficients set to 1
. For the FLUX
model, the coefficients are set to 2
.
The ADETAILER
Stage traverses through Args
to perform calculations. It uses the ad_steps from the arg
for computation. If the ad_use_steps
parameter is used, it inherits the steps from DIFFUSION
and includes them in the calculation.
Calculation is done separately for each stage, but the later stages inherit certain parameters (WIDTH, HEIGHT, STEPS) from the previous stages for calculation.
For example, if there are four stages:
INPUT_INITIALIZE
:COUNT
:1
DIFFUSION
:STEPS
: 20, Credits:0.8
UPSCALER
:STEPS
: 30,WIDTH
: 1920,HEIGHT
: 1080, Credits:2.4
ADETAILER
: inheritsWIDTH
andHEIGHT
fromUPSCALER
, andSTEPS
fromDIFFUSION
, Credits:1.6
- Total cumulative consumption: 4.8
ADETAILER
/INPAINT
STEPS
inheritance rule:
- If there is a
DIFFUSION
stage, it inherits theSTEPS
fromDIFFUSION
. - If there is no
DIFFUSION
stage, it uses theSTEPS
parameter.
ADETAILER
/INPAINT
WIDTH and HEIGHT inheritance rule:
- If it is not the first stage of generating the image (excluding
INPUT_INITIALIZE
), it inherits theWIDTH
andHEIGHT
generated by the previous stage. - If it is the first stage of generating the image (excluding
INPUT_INITIALIZE
), it uses theWIDTH
andHEIGHT
fromDIFFUSION
parameter.
INPUT_INITIALIZE
Initialization COUNT
,MODEL_FACTOR
DIFFUSION:
MODEL_FACTOR
*COUNT
* (CEIL
(STEPS
/ 5 ) / 5)
Some examples:
STEPS | Credits |
---|---|
2 | 0.2 |
8 | 0.4 |
20 | 0.8 |
25 | 1 |
30 | 1.2 |
35 | 1.4 |
40 | 1.6 |
50 | 2 |
60 | 2.4 |
ADETAILER/INPAINT/UPSCALER
MODEL_FACTOR
*COUNT
* (CEIL
(STEPS
/ 5 ) / 5) *CEIL
(WIDTH
*HEIGHT
/ 1024 / 1024 * 2) / 2
Some examples:
STEPS | WIDTH | HEIGHT | Credits |
---|---|---|---|
30 | 1280 | 768 | 2 |
30 | 1920 | 1080 | 3.2 |
30 | 2560 | 1440 | 5 |
60 | 1280 | 768 | 3.2 |
60 | 1920 | 1080 | 5.6 |
60 | 2560 | 1440 | 10.4 |