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 |
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.
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.2for its larger context orkimi-k2.7-codefor coding-agent workflows.
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.