New models in the price index
The rate table behind this site changes every week, usually by addition: a new identifier appears, gets a rate, and becomes callable within hours. This page is the running record of those additions — what arrived, what it costs, and which ones actually change the arithmetic. 839 models are tracked; 11 arrived in the latest wave on 2026-09-26.
This wave — 11 models added 2026-09-26
Read the last two columns rather than the first two. The input rate is the number vendors print first and the number that matters least: output is priced at a median of 4.0× input across all 216 models here, and on agent workloads output is most of what you actually buy.
| Model | Vendor | Input per 1M | Output per 1M | Out:in | Chat 3:1 blended | Agent 1:3 blended | Month 20M in / 6M out |
|---|---|---|---|---|---|---|---|
| qwen3.8-omni-flash | Alibaba | $0.075 | $0.235 | 3.1× | $0.115 | $0.195 | $2.91 same rate as qwen3.8-flash |
| claude-opus-5-5 | Anthropic | $2 | $10 | 5.0× | $4 | $8 | $100 |
| gemini-3.8-flash-tts | $0.25 | $4.5 | 18.0× | $1.3125 | $3.4375 | $32 | |
| gpt-6-luna | OpenAI | $0.05 | $0.25 | 5.0× | $0.1 | $0.2 | $2.5 |
| gpt-6-sol | OpenAI | $1 | $5 | 5.0× | $2 | $4 | $50 |
| hy4-preview | Other | $0.417 | $1.2505 | 3.0× | $0.6254 | $1.0421 | $15.84 |
| jev | Other | $0.021 | — | n/a | $0.021 | $0.021 | $0.55 no separate output rate |
| jev-1.13.0 | Other | $0.021 | — | n/a | $0.021 | $0.021 | $0.55 no separate output rate |
| mimo-v2.6-flash | Other | $0.07 | $0.14 | 2.0× | $0.0875 | $0.1225 | $2.24 same rate as mimo-v2.5 |
| mimo-v2.6-pro | Other | $0.2175 | $0.435 | 2.0× | $0.2719 | $0.3806 | $6.96 same rate as mimo-v2.5-pro |
| grok-4.7 | xAI | $1 | $3 | 3.0× | $1.5 | $2.5 | $38 same rate as grok-3-deepersearch |
What the rates tell you
- The cheap end moved, not the flagship end. The lowest agent-mix rate among this wave is mimo-v2.6-flash at $0.1225 per 1M blended tokens — $2.24 a month at 20M input and 6M output.
- Some arrivals are free upgrades. 4 of them land on exactly the same rate as a model already in the table (grok-4.7 matches grok-3-deepersearch; mimo-v2.6-flash matches mimo-v2.5; mimo-v2.6-pro matches mimo-v2.5-pro; qwen3.8-omni-flash matches qwen3.8-flash) — a version bump with no price movement, which is the cheapest kind of upgrade there is.
- One ratio always stands out. The steepest is gemini-3.8-flash-tts at 18.0× output to input — 4.5× the 4.0× median across all 216 models. On a workload that produces more tokens than it reads, that ratio is the whole bill.
- None of this wave has a published list rate yet. 11 of 11 carry no vendor-published price we can cross-check, so no comparison is implied for them. That is normal for a freshly added identifier — and it is exactly why this page prints rates instead of discounts.
Calling a model the day it appears
Compatible endpoints do not gate new identifiers behind a release; if the rate table has it,
the endpoint serves it. The practical problem is discovery, because most tools will not populate
a dropdown from /v1/models for you. List the endpoint's models first and copy the
identifier exactly as it comes back.
# List every model the endpoint currently serves, newest additions included
curl -s https://aicomp.ai/v1/models -H "Authorization: Bearer $KEY" \
| python3 -c "import sys,json;print('\n'.join(m['id'] for m in json.load(sys.stdin)['data']))"
Then call it like any other model. The only thing that changes is the string in
model — request and response handling stay identical, which is the whole point of
one compatible endpoint.
from openai import OpenAI
client = OpenAI(base_url="https://aicomp.ai/v1", api_key="sk-...")
# A model that only appeared in the rate table this week
resp = client.chat.completions.create(
model="gpt-6-luna",
messages=[
{"role": "system", "content": "Answer in one sentence."},
{"role": "user", "content": "What changed in this release?"},
],
max_tokens=200,
)
# usage is the only place the real price shows up — log it, don't guess
print(resp.usage.prompt_tokens, resp.usage.completion_tokens)
The second half of that snippet is the part people skip. A new model's headline rate tells you the price of a token, not the price of your workload, and the two differ by whatever your input-to-output ratio turns out to be. Log the usage object for a week and you have the ratio; guess at it and you have a number that is wrong in the expensive direction.
import json, datetime
def log_call(model, usage, extra=None):
"""写一行 JSONL。新模型上线前几周,这是唯一可信的成本数据来源。"""
rec = {
"ts": datetime.datetime.utcnow().isoformat() + "Z",
"model": model,
"in": usage.prompt_tokens,
"out": usage.completion_tokens,
**(extra or {}),
}
with open("usage.jsonl", "a") as fh:
fh.write(json.dumps(rec) + "\n")
# 用它算出你自己的 in:out 比例,再回到本站的计算器按该比例比价
# ——比对着价目表猜要准得多。
When a new model is the wrong call
| What you see | What it usually is | Fix |
|---|---|---|
| 404 or "unknown model" on a name you copied from a changelog | The gateway identifier and the vendor's marketing name are not always the same string | Read it back from /v1/models and paste that exact string |
| Chat works, tool calls silently do nothing | New identifiers often land without tool-use support on the first revision | Test tool calling explicitly before routing a production path to it |
| Bill jumps after switching to a cheaper input rate | Output is priced higher, and your workload is output-heavy | Compare blended rates at your real mix, not input rates — see the re-ranked index |
| A model you adopted is gone from the table next month | Preview and dated identifiers are withdrawn without much notice | Pin identifiers in config and alert on model-not-found, not on totals |
| Latency regresses right after an upgrade | A newer revision can be slower at the same rate | Measure p95 before and after; keep the old identifier reachable |
Every wave we have tracked
First-seen dates are recorded automatically each time the rate configuration is read, so the list below grows on its own. The oldest row is the state of the catalogue when tracking began — everything above it arrived after.
| First seen | Models | Added |
|---|---|---|
| 2026-09-26 | 11 | claude-opus-5-5, gemini-3.8-flash-tts, gpt-6-luna, gpt-6-sol, grok-4.7, hy4-preview, jev, jev-1.13.0, mimo-v2.6-flash, mimo-v2.6-pro, qwen3.8-omni-flash |
| 2026-09-20 | 828 | 360GPT_S2_V9, 360gpt-pro, 360gpt-turbo, 360gpt-turbo-responsibility-8k, BAAI/bge-reranker-v2-m3, DeepSeek-R1, DeepSeek-V3, Dolphin3.0-R1-Mistral-24B, ERNIE-3.5-8K, ERNIE-4.0-8K, ERNIE-4.5-Turbo-VL-32K, ERNIE-Bot, ERNIE-Bot-4, ERNIE-Bot-turbo, ERNIE-Character-8K, ERNIE-Functions-8K, ERNIE-Lite-8K, ERNIE-Speed-128K, ERNIE-Speed-8K, ERNIE-Tiny-8K, ERNIE-X1-Turbo-32K, ERNIE-X1-Turbo-32K-Preview, Embedding-V1, GPT-4o-TL, Kimi-K2-Instruct, Llama-3.1-405B, MAI-DS-R1, Meta-Llama-3.1-405B-Instruct, MiniMax-M2, MiniMax-M2.1, MiniMax-M2.5, MiniMax-M2.7, MiniMax-M2.7-highspeed, MiniMax-M3, Moonshot-Kimi-K2-Instruct, PaLM-2, Phi-4, Pro/BAAI/bge-reranker-v2-m3, Qwen/Qwen3-Reranker-0.6B, Qwen/Qwen3-Reranker-4B, Qwen/Qwen3-Reranker-8B, SparkDesk, SparkDesk-v1.1, SparkDesk-v2.1, SparkDesk-v3.1, SparkDesk-v3.5, ada, anthropic/claude-3.7-sonnet, anthropic/claude-sonnet-4, babbage, babbage-002, chatglm_lite, chatglm_pro, chatglm_std, chatglm_turbo, chatgpt-4o-latest, claude-1-100k, claude-2.0, claude-2.1, claude-3-5-haiku-20241022, claude-3-5-haiku-latest, claude-3-5-sonnet-20240620, claude-3-5-sonnet-20241022, claude-3-5-sonnet-latest, claude-3-7-sonnet, claude-3-7-sonnet-20250219, claude-3-7-sonnet-20250219-thinking, claude-3-7-sonnet-latest, claude-3-7-sonnet-thinking, claude-3-7-sonnet-thinking-20250219, claude-3-haiku-20240307, claude-3-opus-20240229, claude-3-sonnet-20240229, claude-3-sonnet-test, claude-3.7-sonnet, claude-3.7-sonnet-thinking, claude-4-opus, claude-4-opus-20250514, claude-4-sonnet-20250514, claude-fable-5, claude-fable-5-1, claude-haiku-4-5-20251001, claude-haiku-4-5-20251001-thinking, claude-instant-1, claude-opus-4-1-20250805, claude-opus-4-1-20250805-thinking, claude-opus-4-20250514, claude-opus-4-20250514-thinking, claude-opus-4-5-20251101, claude-opus-4-6, claude-opus-4-6-thinking, claude-opus-4-7, claude-opus-4-7-thinking, claude-opus-4-8, claude-opus-5, claude-sonnet-4-20250514, claude-sonnet-4-20250514-thinking, claude-sonnet-4-5-20250929, claude-sonnet-4-5-20250929-thinking, claude-sonnet-4-6, claude-sonnet-5, code-davinci-edit-001, codex-mini-latest, command, command-light, command-light-nightly, command-nightly, command-r, command-r-plus , curie, davinci, davinci-002, deepseek-chat, deepseek-coder, deepseek-math-v2, deepseek-ocr, deepseek-ocr1, deepseek-r1, deepseek-r1-0528, deepseek-r1-2025-01-20, deepseek-r1-250120, deepseek-r1-250528, deepseek-r1-distill-llama-70b, deepseek-r1-distill-qwen-32b, deepseek-r1-distill-qwen-7b, deepseek-r1-h, deepseek-r1-searching, deepseek-reasoner, deepseek-v3, deepseek-v3-0324, deepseek-v3-1, deepseek-v3-1-250821, deepseek-v3-1-terminus, deepseek-v3-1-think-250821, deepseek-v3-250324, deepseek-v3-fast, deepseek-v3-search, deepseek-v3.1, deepseek-v3.1-fast, deepseek-v3.1-n, deepseek-v3.1-think, deepseek-v3.1-thinking, deepseek-v3.2, deepseek-v3.2-exp, deepseek-v3.2-exp-thinking, deepseek-v3.2-fast, deepseek-v3.2-speciale, deepseek-v3.2-thinking, deepseek-v4-flash, deepseek-v4-flash-0731, deepseek-v4-flash-202605, deepseek-v4-flash-vision-exp, deepseek-v4-pro, deepseek-v4-pro-0813, deepseek-v4-pro-202606, deepseek-v4.1-flash, doubao-1-5-lite-32k, doubao-1-5-lite-32k-250115, doubao-1-5-pro-256k-250115, doubao-1-5-pro-32k, doubao-1-5-pro-32k-250115, doubao-1-5-pro-32k-character-250228, doubao-1-5-thinking-pro-250415, doubao-1-5-thinking-pro-m-250415, doubao-1-5-thinking-pro-m-250428, doubao-1-5-thinking-vision-pro-250428, doubao-1-5-vision-pro-250328, doubao-1-5-vision-pro-32k, doubao-1-5-vision-pro-32k-250115, doubao-1.5-pro-256k, doubao-1.5-pro-32k, doubao-1.5-vision-pro-32k, doubao-lite-128k, doubao-lite-32k, doubao-lite-4k, doubao-pro-128k, doubao-pro-32k, doubao-pro-32k-241215, doubao-pro-32k-character, doubao-pro-4k, doubao-seed-1-6-250615, doubao-seed-1-6-251015, doubao-seed-1-6-251015-search, doubao-seed-1-6-flash-250615, doubao-seed-1-6-flash-250715, doubao-seed-1-6-flash-250828, doubao-seed-1-6-thinking-250615, doubao-seed-1-6-thinking-250715, doubao-seed-1-6-vision-250815, doubao-seed-1-8-251215, doubao-seed-1-8-251228, doubao-seed-1-8-251228-thinking, doubao-seed-2-0-code-preview-260215, doubao-seed-2-0-lite-260215, doubao-seed-2-0-lite-260428, doubao-seed-2-0-mini-260215, doubao-seed-2-0-mini-260428, doubao-seed-2-0-pro-260215, doubao-seed-2-1-pro-260628, doubao-seed-2-1-pro-260915, doubao-seed-2-1-turbo-260628, doubao-seed-evolving, embedding-bert-512-v1, embedding_s1_v1, ernie-3.5-128k, ernie-3.5-128k-preview, ernie-3.5-8k, ernie-3.5-8k-0613, ernie-3.5-8k-0701, ernie-3.5-8k-preview, ernie-4.0-8k, ernie-4.0-8k-0613, ernie-4.0-8k-latest, ernie-4.0-8k-preview, ernie-4.0-turbo-128k, ernie-4.0-turbo-8k, ernie-4.0-turbo-8k-0628, ernie-4.0-turbo-8k-0927, ernie-4.0-turbo-8k-latest, ernie-4.0-turbo-8k-preview, ernie-4.5-0.3b, ernie-4.5-21b-a3b, ernie-4.5-8k-preview, ernie-4.5-turbo-128k, ernie-4.5-turbo-128k-preview, ernie-4.5-turbo-32k, ernie-4.5-turbo-vl-32k, ernie-4.5-turbo-vl-32k-preview, ernie-4.5-turbo-vl-preview, ernie-4.5-vl-28b-a3b, ernie-x1-32k, ernie-x1-32k-preview, ernie-x1-turbo-32k, ernie-x1-turbo-32k-preview, gemini-1.5-flash, gemini-1.5-flash-002, gemini-1.5-flash-8b, gemini-1.5-flash-8b-exp-0924, gemini-1.5-flash-exp-0827, gemini-1.5-flash-latest, gemini-1.5-pro, gemini-1.5-pro-001, gemini-1.5-pro-002, gemini-1.5-pro-exp-0827, gemini-1.5-pro-latest, gemini-2.0-flash, gemini-2.0-flash-001, gemini-2.0-flash-exp, gemini-2.0-flash-lite, gemini-2.0-flash-lite-001, gemini-2.0-flash-lite-preview-02-05, gemini-2.0-flash-thinking-exp-01-21, gemini-2.0-flash-thinking-exp-1219, gemini-2.0-pro-exp-02-05, gemini-2.5-flash, gemini-2.5-flash-deepsearch-async, gemini-2.5-flash-lite, gemini-2.5-flash-lite-nothinking, gemini-2.5-flash-lite-preview-06-17, gemini-2.5-flash-lite-preview-06-17-nothinking, gemini-2.5-flash-lite-preview-06-17-thinking, gemini-2.5-flash-lite-preview-09-2025, gemini-2.5-flash-lite-preview-09-2025-nothinking, gemini-2.5-flash-lite-preview-09-2025-thinking, gemini-2.5-flash-lite-preview-09-2025-thinking-*, gemini-2.5-flash-lite-thinking, gemini-2.5-flash-nothinking, gemini-2.5-flash-preview-04-17, gemini-2.5-flash-preview-04-17-nothinking, gemini-2.5-flash-preview-04-17-thinking, gemini-2.5-flash-preview-05-20, gemini-2.5-flash-preview-05-20-nothinking, gemini-2.5-flash-preview-05-20-thinking, gemini-2.5-flash-preview-09-2025, gemini-2.5-flash-preview-09-2025-nothinking, gemini-2.5-flash-preview-09-2025-thinking, gemini-2.5-flash-preview-09-2025-thinking-*, gemini-2.5-flash-preview-tts, gemini-2.5-flash-thinking, gemini-2.5-flash-thinking-*, gemini-2.5-pro, gemini-2.5-pro-exp-03-25, gemini-2.5-pro-exp-03-25-nothinking, gemini-2.5-pro-nothinking, gemini-2.5-pro-preview-03-25, gemini-2.5-pro-preview-03-25-nothinking, gemini-2.5-pro-preview-03-25-thinking, gemini-2.5-pro-preview-05-06, gemini-2.5-pro-preview-05-06-nothinking, gemini-2.5-pro-preview-05-06-thinking, gemini-2.5-pro-preview-06-05, gemini-2.5-pro-preview-06-05-thinking, gemini-2.5-pro-preview-tts, gemini-2.5-pro-thinking, gemini-2.5-pro-thinking-*, gemini-2.5-test, gemini-3-flash-preview, gemini-3-flash-preview-thinking, gemini-3-pro-image-preview-l, gemini-3-pro-preview, gemini-3-pro-preview-11-2025, gemini-3-pro-preview-11-2025-thinking, gemini-3-pro-preview-thinking, gemini-3.1-flash-lite, gemini-3.1-flash-lite-preview, gemini-3.1-flash-preview, gemini-3.1-flash-tts-preview, gemini-3.1-pro-preview, gemini-3.1-pro-preview-customtools, gemini-3.5-flash, gemini-3.5-flash-lite, gemini-3.6-flash, gemini-3.7-flash, gemini-3.8-flash, gemini-embedding-001, gemini-embedding-2-preview, gemini-flash-latest, gemini-flash-latest-nothinking, gemini-flash-latest-thinking, gemini-flash-latest-thinking-*, gemini-flash-lite-latest, gemini-flash-lite-latest-nothinking, gemini-flash-lite-latest-thinking, gemini-flash-lite-latest-thinking-*, gemini-pro-latest, gemini-pro-latest-nothinking, gemini-pro-latest-thinking, gemini-pro-latest-thinking-*, gemma-2-27b-it, gemma-2-2b-it, gemma-2-9b-it, gemma-2b-it, gemma-3-12b-it, gemma-3-1b-it, gemma-3-27b-it, gemma-3-4b-it, gemma-7b-it, gemma2-27b-it, gemma2-9b-it, glm-3-turbo, glm-4, glm-4-0520, glm-4-air, glm-4-airx, glm-4-alltools, glm-4-flash, glm-4-long, glm-4-plus, glm-4.5, glm-4.5-air, glm-4.5-airx, glm-4.5-flash, glm-4.5-x, glm-4.5v, glm-4.6, glm-4.6-thinking, glm-4.6v, glm-4.7, glm-4.7-thinking, glm-4v, glm-4v-plus, glm-5, glm-5-turbo, glm-5.1, glm-5.2, glm-5.3, glm-5.3-flash, global.anthropic.claude-opus-4-6-v1, gpt-3, gpt-3.5-turbo, gpt-3.5-turbo-0125, gpt-3.5-turbo-0301, gpt-3.5-turbo-0613, gpt-3.5-turbo-1106, gpt-3.5-turbo-16k, gpt-3.5-turbo-16k-0613, gpt-3.5-turbo-instruct, gpt-4, gpt-4-0125-preview, gpt-4-0613, gpt-4-1106-preview, gpt-4-1106-vision-preview, gpt-4-32k, gpt-4-32k-0613, gpt-4-gizmo-*, gpt-4-turbo, gpt-4-turbo-2024-04-09, gpt-4-turbo-preview, gpt-4-vision-preview, gpt-4.1, gpt-4.1-2025-04-14, gpt-4.1-mini, gpt-4.1-mini-2025-04-14, gpt-4.1-nano, gpt-4.1-nano-2025-04-14, gpt-4.5-preview, gpt-4.5-preview-2025-02-27, gpt-4o, gpt-4o-2024-05-13, gpt-4o-2024-08-06, gpt-4o-2024-11-20, gpt-4o-alle, gpt-4o-audio-preview, gpt-4o-audio-preview-2024-10-01, gpt-4o-audio-preview-2024-12-17, gpt-4o-audio-preview-2025-06-03, gpt-4o-mini, gpt-4o-mini-2024-07-18, gpt-4o-mini-audio-preview, gpt-4o-mini-audio-preview-2024-12-17, gpt-4o-mini-realtime-preview, gpt-4o-mini-realtime-preview-2024-12-17, gpt-4o-mini-search-preview, gpt-4o-mini-search-preview-2025-03-11, gpt-4o-mini-transcribe, gpt-4o-mini-transcribe-2025-03-20, gpt-4o-mini-tts, gpt-4o-realtime-preview, gpt-4o-realtime-preview-2024-10-01, gpt-4o-realtime-preview-2024-12-17, gpt-4o-realtime-preview-2025-06-03, gpt-4o-search-preview, gpt-4o-search-preview-2025-03-11, gpt-4o-transcribe, gpt-5, gpt-5-2025-08-07, gpt-5-chat-latest, gpt-5-codex, gpt-5-codex-high, gpt-5-codex-low, gpt-5-codex-medium, gpt-5-high, gpt-5-low, gpt-5-medium, gpt-5-mini, gpt-5-mini-2025-08-07, gpt-5-minimal, gpt-5-nano, gpt-5-nano-2025-08-07, gpt-5-pro, gpt-5-pro-2025-10-06, gpt-5-search-api, gpt-5-search-api-2025-10-14, gpt-5-test, gpt-5.1, gpt-5.1-2025-11-13, gpt-5.1-chat, gpt-5.1-chat-2025-11-13, gpt-5.1-chat-latest, gpt-5.1-codex, gpt-5.1-codex-high, gpt-5.1-codex-low, gpt-5.1-codex-max, gpt-5.1-codex-medium, gpt-5.1-codex-mini, gpt-5.1-codex-mini-2025-11-13, gpt-5.1-high, gpt-5.1-low, gpt-5.1-medium, gpt-5.1-thinking, gpt-5.2, gpt-5.2-2025-12-11, gpt-5.2-chat, gpt-5.2-chat-latest, gpt-5.2-codex, gpt-5.2-pro, gpt-5.2-pro-2025-12-11, gpt-5.3-chat, gpt-5.3-chat-2026-03-03, gpt-5.3-chat-latest, gpt-5.3-codex, gpt-5.3-codex-high, gpt-5.3-codex-low, gpt-5.3-codex-medium, gpt-5.3-codex-spark, gpt-5.3-codex-xhigh, gpt-5.4, gpt-5.4-2026-03-05, gpt-5.4-high, gpt-5.4-low, gpt-5.4-medium, gpt-5.4-mini, gpt-5.4-mini-2026-03-17, gpt-5.4-nano, gpt-5.4-nano-2026-03-17, gpt-5.4-openai-compact, gpt-5.4-pro, gpt-5.4-pro-2026-03-05, gpt-5.4-xhigh, gpt-5.5, gpt-5.5-2026-04-23, gpt-5.5-2026-04-24, gpt-5.5-high, gpt-5.5-low, gpt-5.5-medium, gpt-5.5-openai-compact, gpt-5.5-pro, gpt-5.5-pro-2026-04-23, gpt-5.5-xhigh, gpt-5.6-luna, gpt-5.6-luna-2026-07-09, gpt-5.6-luna-high, gpt-5.6-luna-low, gpt-5.6-luna-max, gpt-5.6-luna-medium, gpt-5.6-luna-ultra, gpt-5.6-luna-xhigh, gpt-5.6-sol, gpt-5.6-sol-2026-07-09, gpt-5.6-sol-high, gpt-5.6-sol-low, gpt-5.6-sol-max, gpt-5.6-sol-medium, gpt-5.6-sol-ultra, gpt-5.6-sol-xhigh, gpt-5.6-terra, gpt-5.6-terra-2026-07-09, gpt-5.6-terra-high, gpt-5.6-terra-low, gpt-5.6-terra-max, gpt-5.6-terra-medium, gpt-5.6-terra-ultra, gpt-5.6-terra-xhigh, gpt-6, gpt-6-astra, gpt-6-astra-2026-09-03, gpt-audio-2025-08-28, gpt-chat-latest, gpt-image-1, gpt-image-1-mini, gpt-image-1.5, gpt-image-2, gpt-image-2.5-flare, gpt-image-2.5-sunburst, gpt-oss-120b, gpt-oss-20b, gpt-realtime-1.5-2026-02-23, gpt-realtime-2.1, gpt-realtime-2.1-mini, gpt-realtime-2025-08-28, grok-2, grok-2-1212, grok-2-imageGen, grok-2-search, grok-2-vision-1212, grok-3, grok-3-beta, grok-3-deepersearch, grok-3-deepsearch, grok-3-fast-beta, grok-3-mini, grok-3-mini-beta, grok-3-mini-fast-beta, grok-3-reasoner, grok-3-reasoning, grok-3-search, grok-4, grok-4-0709, grok-4-1-fast-non-reasoning, grok-4-1-fast-reasoning, grok-4-20-non-reasoning, grok-4-20-reasoning, grok-4-deepsearch, grok-4-fast, grok-4-fast-non-reasoning, grok-4-fast-reasoning, grok-4.1, grok-4.1-fast, grok-4.1-thinking, grok-4.2, grok-4.2-fast, grok-4.3, grok-4.5, grok-4.6, grok-beta, grok-build-0.1, grok-code-fast-1, grok-vision-beta, hunyuan, hunyuan-T1, hunyuan-a13b, hunyuan-code, hunyuan-functioncall, hunyuan-large, hunyuan-role, hunyuan-standard, hunyuan-standard-256K, hunyuan-t1, hunyuan-t1-20250711, hunyuan-t1-latest, hunyuan-t1-vision, hunyuan-t1-vision-20250619, hunyuan-translation, hunyuan-translation-lite, hunyuan-turbos-20250716, hunyuan-turbos-latest, hunyuan-turbos-longtext-128k-20250325, hunyuan-turbos-vision, hunyuan-turbos-vision-20250619, jina-reranker-v2-base-multilingual, kimi-k2, kimi-k2-0711-preview, kimi-k2-0711-preview-search, kimi-k2-0905, kimi-k2-250711, kimi-k2-250905, kimi-k2-instruct, kimi-k2-thinking, kimi-k2.5, kimi-k2.6, kimi-k2.7-code, kimi-k2.7-code-highspeed, kimi-k3, learnlm-1.5-pro-experimental, learnlm-2.0-flash-experimental, llama-2-13b, llama-2-70b, llama-2-7b, llama-3-70b, llama-3-8b, llama-3-sonar-large-32k-chat, llama-3-sonar-small-32k-chat, llama-3.1-405b, llama-3.1-405b-instruct, llama-3.1-70b, llama-3.1-70b-instruct, llama-3.1-70b-instruct-turbo, llama-3.1-8b, llama-3.1-8b-instruct, llama-3.2-11b-vision-instruct, llama-3.2-1b-instruct, llama-3.2-3b-instruct, llama-3.2-90b-vision, llama-3.2-90b-vision-instruct, llama-3.3-70b, llama-3.3-70b-instruct, llama-4-maverick, longcat-flash-chat, longcat-flash-thinking, mai-ds-r1, meta-llama/llama-3.1-70b-instruct, meta-llama/llama-4-maverick, meta-llama/llama-4-scout, mimo-v2-flash, mimo-v2-pro, mimo-v2.5, mimo-v2.5-pro, minimax-m2, minimax-m2.1, minimax-m2.5, mistral-large-latest, mistral-small-latest, mixtral-8x7b-instruct, moonshot-v1-128k, moonshot-v1-32k, moonshot-v1-8k, net-gpt-3.5-turbo, net-gpt-4, netease-youdao/bce-reranker-base_v1, o1, o1-2024-12-17, o1-mini, o1-mini-2024-09-12, o1-preview, o1-preview-2024-09-12, o3, o3-2025-04-16, o3-deep-research, o3-deep-research-2025-06-26, o3-mini, o3-mini-2025-01-31, o3-pro, o3-pro-2025-06-10, o4-mini, o4-mini-2025-04-16, o4-mini-deep-research, o4-mini-deep-research-2025-06-26, openai/gpt-4.5-preview, qvq-72b-preview, qvq-72b-preview-0310, qvq-max, qvq-max-latest, qwen-72b, qwen-flash, qwen-max, qwen-max-2025-01-25, qwen-max-latest, qwen-mt-plus, qwen-mt-turbo, qwen-omni-turbo, qwen-omni-turbo-2025-01-19, qwen-omni-turbo-latest, qwen-plus, qwen-plus-2025-04-28, qwen-plus-2025-09-11, qwen-plus-2025-12-01, qwen-plus-busikao, qwen-plus-character, qwen-plus-latest, qwen-turbo, qwen-turbo-1101, qwen-turbo-2024-11-01, qwen-turbo-2025-07-15, qwen-turbo-latest, qwen-vl-max, qwen-vl-max-2025-08-13, qwen-vl-max-latest, qwen-vl-plus, qwen2-vl-72b-instruct, qwen2-vl-7b-instruct, qwen2.5-14b-instruct, qwen2.5-14b-instruct-1m, qwen2.5-32b, qwen2.5-32b-instruct, qwen2.5-3b-instruct, qwen2.5-72b-instruct, qwen2.5-7b-instruct, qwen2.5-7b-instruct-1m, qwen2.5-coder-14b-instruct, qwen2.5-coder-32b-instruct, qwen2.5-coder-7b-instruct, qwen2.5-math-72b-instruct, qwen2.5-math-7b-instruct, qwen2.5-vl-32b-instruct, qwen2.5-vl-3b-instruct, qwen2.5-vl-72b-instruct, qwen2.5-vl-7b-instruct, qwen3-0.6b, qwen3-1.7b, qwen3-14b, qwen3-235b-a22b, qwen3-235b-a22b-instruct-2507, qwen3-235b-a22b-think, qwen3-235b-a22b-thinking-2507, qwen3-30b-a3b, qwen3-30b-a3b-instruct-2507, qwen3-30b-a3b-think, qwen3-30b-a3b-thinking-2507, qwen3-32b, qwen3-4b, qwen3-8b, qwen3-coder, qwen3-coder-30b-a3b-instruct, qwen3-coder-480b-a35b-instruct, qwen3-coder-flash, qwen3-coder-plus, qwen3-coder-plus-2025-07-22, qwen3-coder-plus-2025-09-23, qwen3-max, qwen3-max-2026-01-23, qwen3-max-preview, qwen3-next-80b-a3b, qwen3-next-80b-a3b-instruct, qwen3-next-80b-a3b-thinking, qwen3-rerank, qwen3-tts-flash, qwen3-tts-flash-2025-11-27, qwen3-vl-235b-a22b, qwen3-vl-235b-a22b-instruct, qwen3-vl-235b-a22b-thinking, qwen3-vl-30b-a3b-instruct, qwen3-vl-30b-a3b-thinking, qwen3-vl-32b-instruct, qwen3-vl-32b-thinking, qwen3-vl-8b-instruct, qwen3-vl-8b-thinking, qwen3-vl-flash, qwen3-vl-plus, qwen3.5-122b-a10b, qwen3.5-27b, qwen3.5-35b-a3b, qwen3.5-397b-a17b, qwen3.5-flash, qwen3.5-omni-flash, qwen3.5-plus, qwen3.5-plus-2026-02-15, qwen3.6-27b, qwen3.6-35b-a3b, qwen3.6-max-preview, qwen3.6-plus, qwen3.6-plus-2026-04-02, qwen3.7-max, qwen3.7-max-2026-05-20, qwen3.7-plus, qwen3.8-27b, qwen3.8-flash, qwen3.8-max, qwen3.8-max-0902, qwq-32b, qwq-32b-preview, qwq-72b-preview, qwq-plus, qwq-plus-2025-03-05, qwq-plus-latest, seed-oss-36b-instruct, semantic_similarity_s1_v1, text-ada-001, text-babbage-001, text-curie-001, text-davinci-002, text-davinci-003, text-davinci-edit-001, text-embedding-3-large, text-embedding-3-small, text-embedding-ada-002, text-embedding-v1, text-moderation-latest, text-moderation-stable, text-search-ada-doc-001, tts-1, tts-1-1106, tts-1-hd, tts-1-hd-1106, whisper-1, yi-1.5-34b-chat-16k, yi-1.5-6b-chat, yi-1.5-9b-chat-16k, yi-34b-chat-0205, yi-34b-chat-200k, yi-large, yi-large-rag, yi-large-turbo, yi-lightning, yi-medium, yi-medium-200k, yi-spark, yi-vision, yi-vl-plus |
How this compares to the rest of the index
Additions matter because they change the ranking, and the ranking changes when you stop sorting by input price. Across the 216 cleaned models in the full index, sorting by raw input price instead of a realistic agent mix can put a model 68 places out. A new entry at the cheap end is worth checking against that re-ranked view, not against the top of a price table.