OpenFill is in development. Inference is off, but is tested end to end, and will switch on at launch. All data currently on the site is for live testing: it will be erased at launch.

Skip to content
openfill

Model

glm-5.3-flash

glm-5.3-flash is sold at a fixed price per token. A request names glm-5.3-flash and is charged the prices below for the tokens it uses.

Datasheet

FieldValue
Model idglm-5.3-flash
Also answers toNo other id
Context length262,144 tokens
Max output128,000 tokens
PricingFixed price

max_tokens above the max output is clamped down to it.

Backend unavailable

No machine is serving glm-5.3-flash right now, and orders queue until capacity returns.

Prices

What a request pays for each kind of token. GET /v1/models carries the current prices.

Per 1M tokens: $0.0200 cache-hit · $0.1000 cache-miss · $0.3000 output

Uptime, last 24 hours

Each check is a chat completion through the public API, run the way the models board describes.

Uptime

n/a

Checks

0

Failures

0

Latency

n/a

Queue wait

n/a

Not serving, so no checks are running.

The first call

Set OPENFILL_API_KEY to a key from API keys before running an example. A key starts with of_live_ and is shown once.

Read docs
import osfrom openai import OpenAI client = OpenAI(    base_url=(        "https://api.openfill.ai/v1"    ),    api_key=os.environ[        "OPENFILL_API_KEY"    ],) r = client.chat.completions.create(    model="glm-5.3-flash",    messages=[        {"role": "user", "content": "hi"}    ],)print(r.choices[0].message.content)print(r.usage)

Questions

What does glm-5.3-flash cost on OpenFill?

Each request is charged for the tokens it uses: $0.0200 per 1M cache-hit tokens, $0.1000 per 1M cache-miss tokens and $0.3000 per 1M output tokens.

Every model and its prices

What happens when glm-5.3-flash is at capacity?

The request waits for a free slot, taking turns with other accounts, for up to max_wait (10 seconds to 30 days). Past that it ends with 429 and no charge.

Waiting and timeouts

Does a price limit or price lock apply?

glm-5.3-flash ignores both, so a tool that sends one X-Price-Limit for every model can keep it.

How pricing works

What are the rate limits?

1,200 inference requests a minute per key, 2,000 queued orders per account, and a request body of up to 8 MB. Every rate limit is on GET /v1/rate-limits.

Rate limits

What is stored?

Storage is off by default: a prompt and its response exist only while the request runs. With it on, results are kept up to 30 days; store: false keeps less.

Data storage