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

kimi-k3

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

Datasheet

FieldValue
Model idkimi-k3
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 kimi-k3 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.1000 cache-hit · $1.0000 cache-miss · $5.0000 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="kimi-k3",    messages=[        {"role": "user", "content": "hi"}    ],)print(r.choices[0].message.content)print(r.usage)

Questions

What does kimi-k3 cost on OpenFill?

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

Every model and its prices

What happens when kimi-k3 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?

kimi-k3 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