Available Models
FreeInference exposes an OpenAI-compatible model catalog for coding agents and IDEs. The catalog changes as providers and local deployments change, so the authenticated API is the source of truth for your account:
curl -H "Authorization: Bearer $FREEINFERENCE_API_KEY" \
https://freeinference.org/v1/models
The response is filtered by access level. A model that is not returned for your key is not available to that account.
Model Overview
Model ID |
Access |
Context |
Max Output |
Input |
Highlights |
|---|---|---|---|---|---|
|
Free |
200K |
128K |
Text |
Tools, structured output, thinking, tool streaming |
|
Free |
205K |
131K |
Text |
Tools, structured output, thinking |
|
Free |
1M |
131K |
Text, image, video |
Long context, tools, structured output, thinking |
|
Free |
262K |
8K |
Text, image, video |
Fast non-thinking model, tools, structured output |
|
Free |
262K |
8K |
Text |
Fast local model, tools, structured output, thinking |
|
Free |
1M |
393K |
Text |
Agentic coding, tools, structured output, reasoning controls |
|
Pro |
1M |
131K |
Text |
Tools, structured output, thinking, tool streaming |
|
Pro |
1M |
131K |
Text |
Tools, structured output, always-on thinking with |
|
Pro |
262K |
131K |
Text, image, video |
Coding agents, tools, structured output, thinking |
All listed models produce text. Context and output limits are deployment limits; an upstream provider may enforce a smaller limit for an individual request.
DeepSeek Upstream Reference Pricing
The following prices are DeepSeek’s upstream API reference rates in U.S. dollars per 1 million tokens. The gateway uses them for cost accounting and route selection; they are not fees charged by FreeInference to users. See the official DeepSeek pricing page for the latest rates.
Since 2026-08-16 16:00 UTC, DeepSeek itself bills at peak and off-peak rates: peak hours are 01:00–04:00 UTC and 06:00–10:00 UTC each day, and off-peak is half the peak rate.
FreeInference does not track that split. The gateway accounts for every DeepSeek call at the peak rate, whatever the hour:
Model |
Input (cache hit) |
Input (cache miss) |
Output |
|---|---|---|---|
V4 Flash ( |
$0.014 |
$0.44 |
$1.32 |
V4 Pro ( |
$0.044 |
$1.32 |
$3.96 |
Using the peak rate uniformly means an off-peak call is accounted at twice the rate DeepSeek actually charged for it. These figures drive internal cost accounting and route selection; they are not fees billed to users, so the effect is on quota consumption, not on anything you pay.
The V4 Pro rows document the upstream rate for completeness; they do not add
deepseek-v4-pro to the generally available FreeInference catalog.
Availability remains determined by the authenticated GET /v1/models
response, and administrator-only models remain omitted from the overview.
Embedding Model
Model ID |
Access |
Context |
Input |
Output |
|---|---|---|---|---|
|
Free |
8K |
Text |
Embedding vector |
Use bge-m3 with the OpenAI-compatible /v1/embeddings endpoint for codebase
indexing. It is not a chat or completion model.
Choosing a Model
Start with
glm-5.1for general coding and bilingual work.Use
qwen3.6-35bfor quick edits and background-agent calls that do not need extended reasoning.Use
minimax-m3for long-context or multimodal work.Use
deepseek-v4-flashfor complex agentic coding and long reasoning chains.Pro users can choose
glm-5.3for the strongest coding results,glm-5.2when thinking has to be switchable, orkimi-k2.7-codefor coding-agent workflows.glm-5.3andglm-5.2share the same 1M context.glm-5.3always reasons: it rejectsthinking: {"type": "disabled"}. Sendreasoning_effort(low,high,max) to control how much it thinks, and stay onglm-5.2if your client needs thinking fully off.
Access and Retired IDs
Free accounts can use models marked Free. Models marked Pro require a Pro-enabled key. Operational models restricted to administrators or staff are intentionally omitted from the public recommendation list.
Old IDs such as glm-4.7 and minimax-m2.7 are no longer in the production
catalog. If a saved IDE configuration uses a retired ID, select one returned
by GET /v1/models; otherwise the gateway returns 404 Model not found.
Switching Models
Use the exact model ID from GET /v1/models in your client’s model selector or
configuration. In Claude Code, use /model; for provider-specific setup, see
the IDE and coding-agent integrations.