GLM-5.2 is not just another entry in the weekly model-release churn. Z.ai is positioning it as a serious open-weight challenger for the hardest part of the current AI market: long-horizon coding, autonomous engineering, large-context tool use, and agent workflows that have to stay coherent across many files, logs, decisions, and verification loops.
The release matters because the open-weight race has moved past “can this model chat well?” and into “can this model work through a real engineering problem for an hour without losing the plot?” According to the Z.ai developer docs, GLM-5.2 supports a 1M-token context window, up to 128K output tokens, tool/function calling, structured output, context caching, and MCP support. The Hugging Face model card lists the model under an MIT license, describes multiple thinking-effort levels, and presents GLM-5.2 as Z.ai’s latest flagship model for long-horizon tasks.
This article covers what GLM-5.2 is, the specs that matter, what its architecture changes are trying to solve, what the public benchmark table says, where the launch claims are still unproven, and how GLM-5.2 compares with Claude Opus 4.8, GPT-5.5, Gemini 3.1 Pro, Qwen3.7-Max, DeepSeek-V4-Pro, MiniMax M3, and Kimi. It is written for founders, CTOs, developers, AI consultants, power users, and local-model builders deciding whether GLM-5.2 belongs in their stack.

TL;DR
- GLM-5.2 is Z.ai’s new flagship model for long-horizon reasoning, coding, and agentic work.
- Z.ai documents a 1M-token context window and up to 128K output tokens.
- The Hugging Face model card lists 753B parameters, while Fireworks serving metadata lists 743B. That discrepancy is worth noting.
- The model is available as open weights under an MIT license according to the model card and Fireworks launch material.
- Z.ai reports large gains over GLM-5.1, especially on long-horizon coding-agent benchmarks.
- GLM-5.2 looks like one of the strongest open-weight coding models available right now, but vendor-reported benchmarks are not a substitute for private workload testing.
- Claude Opus-class models still lead or nearly lead on several public coding and agentic benchmarks, especially on the hardest multi-hour tasks.
- The practical question is not whether GLM-5.2 “wins” the internet. It is whether it gives teams a cheaper, more portable, more controllable frontier-adjacent model for real engineering workflows.
What Is GLM-5.2?
GLM-5.2 is Z.ai’s latest flagship large language model for long-horizon tasks. In plain English, long-horizon tasks are the work sessions where a model has to remember the goal, inspect many files, use tools, revise its plan, preserve constraints, debug failures, and verify the result instead of answering a single prompt. That includes codebase refactoring, migration planning, test-failure analysis, repository understanding, automated research, and multi-step agent workflows.
That positioning puts GLM-5.2 directly in the market Kingy.ai has been tracking across open-weight models and closed frontier models. If you read Kingy’s guide to why open source AI became the escape hatch, GLM-5.2 is the kind of release that makes the argument concrete: it gives developers and companies another credible option when they want frontier-style capability without depending entirely on a closed hosted model. It also fits the broader “own your stack” discussion in Kingy’s guide to open-source AI models, local LLMs, and AI sovereignty.
The model is not automatically the right choice for every workload. A 753B-parameter open-weight model is not something most teams casually run on a laptop. The API version is easier to adopt, but then the question becomes price, latency, reliability, privacy, and how well the model works inside the tools your team already uses. GLM-5.2 is best understood as a new high-end option in the model-routing menu, not a universal replacement for GPT, Claude, Gemini, DeepSeek, Qwen, or smaller local models.
GLM-5.2 Specs
| Model name | GLM-5.2 |
|---|---|
| Creator | Z.ai |
| Launch status | Public API/model-card availability was visible on June 16, 2026; some access and reporting appeared earlier depending on surface. |
| Model type | Open-weight flagship LLM for long-horizon reasoning, coding, and agent workflows. |
| Parameter count | The Hugging Face model card lists 753B parameters. Fireworks serving metadata lists 743B parameters. Treat 753B as the model-card figure and note the discrepancy. |
| Active parameters | Not verified in the official GLM-5.2 material checked for this article. |
| Context window | 1M tokens in Z.ai docs and model-card material. |
| Maximum output | 128K output tokens in Z.ai docs. |
| Modalities | Text input and text output in Z.ai docs; no verified image input support on Fireworks model metadata. |
| License | MIT license according to the Hugging Face model card and Fireworks launch material. |
| Weights availability | Open weights on Hugging Face under zai-org/GLM-5.2. |
| API availability | Z.ai API and Fireworks hosted inference. |
| Local deployment support | Hugging Face card references SGLang, vLLM, Transformers, KTransformers, and Ascend NPU support. |
| Reasoning modes | Multiple thinking-effort levels are described on the Hugging Face model card. |
| Tool/function calling | Supported in Z.ai docs. |
| Structured output | Supported in Z.ai docs. |
| Context caching | Supported in Z.ai docs and priced separately in Z.ai pricing material. |
| Pricing checked | Z.ai/Fireworks: $1.40 input, $0.26 cached input, $4.40 output per 1M tokens as checked June 17, 2026. |
| Best known use cases | Long-horizon coding, agentic engineering, repo migration, tool use, research synthesis, and open-weight deployment experiments. |
| Main limitations | Launch-day benchmark comparability, parameter-count discrepancy across sources, unknown real-world behavior on private workloads, and deployment cost for a very large model. |
Why 1M Context Matters
A 1M-token context window is not just about stuffing more text into a prompt. The useful question is whether the model can reason over a large working set without treating it like a messy archive. A small-context model may see the active file, a few nearby dependencies, and a short error log. A large-context coding model can be given repository structure, implementation notes, design constraints, test output, docs, migration plans, tool traces, and the user’s instructions in the same work session.
That matters because the bottleneck in AI coding is often not syntax. It is continuity. Real software work includes “remember the API contract from 20 minutes ago,” “do not break this hidden business rule,” “the first failing test is misleading,” and “the migration has to preserve old customer data.” A useful 1M-context model can keep more of that state in working memory. A merely claimed 1M-context model can accept a huge prompt but still fail to retrieve the right detail when the work gets tangled.
This is why GLM-5.2 should be evaluated on usable context, not advertised context alone. Teams should test long code-review sessions, multi-file refactors, old logs plus new source, and tool-heavy agent loops. Kingy’s article on AI loops, Codex, Claude Code, and LLM workflows makes the same point from a workflow perspective: agents become useful when they can repeatedly plan, act, inspect, and correct.

Architecture: What Z.ai Says Changed
The GLM-5.2 model card highlights several technical ideas meant to make long-context work more practical. The first is IndexShare, which Z.ai says reduces per-token FLOPs by 2.9x at 1M context length. The second is support for multiple thinking-effort levels, which matters because not every task needs expensive deep reasoning. The third is multi-token prediction, where the card says the acceptance length can reach up to 20%, improving generation throughput when predictions are accepted.
The technical theme is simple even if the implementation is not: 1M context is expensive. Long prompts make attention and KV-cache management harder. Large coding sessions can become latency-heavy and cost-heavy before the model has produced useful work. Sparse-attention lineage, better long-context serving, and speculative or multi-token decoding are attempts to make the model usable in real workflows rather than merely impressive on a spec sheet.
That is also why pricing, caching, and serving platform matter. Z.ai’s pricing page lists GLM-5.2 at $1.40 per 1M input tokens, $0.26 per 1M cached input tokens, and $4.40 per 1M output tokens as checked on June 17, 2026. Fireworks lists the same core rates on its GLM-5.2 model page and emphasizes serverless prompt caching. For long-context coding agents, cached context can be the difference between a tolerable architecture and an experiment that burns money every time it reads the same repo.
Benchmark Methodology Warning
Before the benchmark table, the boring warning is the honest one: benchmarks are useful, but they are not the product. They are especially fragile for long-horizon coding because harnesses differ, tool policies differ, time limits differ, and a small change in scaffolding can change the result. Vendor-reported numbers should be treated as a starting point for evaluation, not a final verdict.
The GLM-5.2 model card compares Z.ai’s model with GLM-5.1, Qwen3.7-Max, MiniMax M3, DeepSeek-V4-Pro, Claude Opus 4.8, GPT-5.5, and Gemini 3.1 Pro. That is useful because it puts the release in context. It is also risky because some comparison numbers come from vendor tables, some from public benchmark projects, and some may depend on specific harnesses. Fireworks makes this point plainly in its launch analysis: it calls out launch-day benchmark caution while also saying it validated a high GPQA-Diamond result on its own engine.
Use the table below directionally. If you are choosing a model for production, test your own repository, your own tool loop, your own latency budget, your own privacy constraints, and your own failure tolerance. Kingy’s right model, right job guide is still the correct operating principle.
GLM-5.2 Benchmark Table
| Area | Benchmark | GLM-5.2 | GLM-5.1 | Qwen3.7-Max | MiniMax M3 | DeepSeek-V4-Pro | Claude Opus 4.8 | GPT-5.5 | Gemini 3.1 Pro |
|---|---|---|---|---|---|---|---|---|---|
| Reasoning | HLE | 40.5 | 31 | 41.4 | 37 | 37.7 | 49.8* | 41.4* | 45 |
| Reasoning | HLE with tools | 54.7 | 52.3 | 53.5 | — | 48.2 | 57.9* | 52.2* | 51.4* |
| Reasoning | CritPt | 20.9 | 4.6 | 13.4 | 3.7 | 12.9 | 20.9 | 27.1 | 17.7 |
| Reasoning | AIME 2026 | 99.2 | 95.3 | 97 | — | 94.6 | 95.7 | 98.3 | 98.2 |
| Reasoning | HMMT Nov 2025 | 94.4 | 94 | 95 | 84.4 | 94.4 | 96.5 | 96.5 | 94.8 |
| Reasoning | HMMT Feb 2026 | 92.5 | 82.6 | 97.1 | 84.4 | 95.2 | 96.7 | 96.7 | 87.3 |
| Reasoning | IMOAnswerBench | 91.0 | 83.8 | 90 | — | 89.8 | 83.5 | — | 81 |
| Reasoning | GPQA-Diamond | 91.2 | 86.2 | 90 | 93 | 90.1 | 93.6 | 93.6 | 94.3 |
| Coding | SWE-bench Pro | 62.1 | 58.4 | 60.6 | 59 | 55.4 | 69.2 | 58.6 | 54.2 |
| Coding | NL2Repo | 48.9 | 42.7 | 47.2 | 42.1 | 35.5 | 69.7 | 50.7 | 33.4 |
| Coding | DeepSWE | 46.2 | 18 | 18 | 20 | 8 | 58 | 70 | 10 |
| Coding | ProgramBench | 63.7 | 50.9 | — | — | 47.8 | 71.9 | 70.8 | 39.5 |
| Coding | Terminal-Bench 2.1, Terminus-2 | 81.0 | 63.5 | 75 | 65 | 64 | 85 | 84 | 74 |
| Coding | Terminal-Bench 2.1, best reported harness | 82.7 | 69 | — | — | — | 78.9 | 83.4 | 70.7 |
| Coding | FrontierSWE | 74.4 | 30.5 | — | — | 29.0 | 75.1 | 72.6 | 39.6 |
| Coding | PostTrainBench | 34.3 | 20.1 | — | — | — | 37.2 | 28.4 | 21.6 |
| Coding | SWE-Marathon | 13.0 | 1.0 | — | — | — | 26.0 | 12.0 | 4.0 |
| Agentic | MCP-Atlas | 76.8 | 71.8 | 76.4 | 74.2 | 73.6 | 77.8 | 75.3 | 69.2 |
| Agentic | Tool-Decathlon | 48.2 | 40.7 | — | — | 52.8 | 59.9 | 55.6 | 48.8 |
Benchmark table reproduced from the GLM-5.2 model-card table where available. Missing values are shown as dashes. Asterisks are retained where the source table uses footnote markers.
Chart 1: Coding Benchmark Comparison
The headline coding story is that GLM-5.2 lands close to closed frontier systems on several source-reported coding benchmarks, while Claude Opus 4.8 still leads on some of the hardest long-horizon measures. GLM-5.2’s strongest comparative story is not a clean sweep. It is that an MIT-licensed open-weight model is now showing credible scores in areas that used to belong mostly to closed APIs.
SWE-bench Pro
Terminal-Bench 2.1
FrontierSWE
PostTrainBench
SWE-Marathon
MCP-Atlas
Vendor-reported or source-reported benchmark scores. Cross-model benchmark comparisons should be treated as directional, not absolute.
Chart 2: GLM-5.2 vs GLM-5.1 Improvement
The clearest before-and-after comparison is GLM-5.2 versus GLM-5.1. The largest visible jump in the public table is FrontierSWE, where GLM-5.2 is reported at 74.4 versus 30.5 for GLM-5.1. The model also shows large improvements on DeepSWE, Terminal-Bench 2.1, PostTrainBench, SWE-Marathon, and several reasoning or agentic tasks.
This is the part of the launch that may matter most. The open-weight race does not need every model to beat every closed model tomorrow. It needs repeated jumps where open-weight systems become good enough for more serious workflows. GLM-5.2 appears to move Z.ai much closer to that frontier in coding-agent work.

Chart 3: Open-Weight vs Frontier Model Map
The market split is no longer “open models are cheap and weak, closed models are expensive and strong.” The map is messier. Closed frontier models still dominate many premium workflows because they bundle capability, tooling, reliability, and ecosystem polish. Open-weight models are increasingly compelling where portability, sovereignty, cost control, customization, and inspection matter.
Chart 4: Pricing And Serving Context
Price comparisons are treacherous because context windows, cache discounts, output length, speed tiers, and provider routing all change the real bill. Still, GLM-5.2’s listed Z.ai and Fireworks pricing is aggressive for a frontier-adjacent long-context model. The especially important line is cached input pricing, because a 1M-context coding agent may reuse the same repository context across many turns.
| Model/API | Input per 1M | Cached input per 1M | Output per 1M | Notes |
|---|---|---|---|---|
| GLM-5.2, Z.ai / Fireworks | $1.40 | $0.26 | $4.40 | 1M context; MIT/open weights; text-only serving metadata checked. |
| DeepSeek-V4-Pro | $0.435 cache miss | $0.003625 cache hit | $0.87 | 1M context in DeepSeek docs; pricing can change. |
| GPT-5.5 | $5.00 | $0.50 cached | $30.00 | 1,050,000-token API context and 128K max output in OpenAI docs. |
| Claude Opus 4.8 | $5.00 | varies by platform | $25.00 | Opus-class model; context and price vary by surface/provider. |
| Gemini 3.1 Pro Preview | $2.00 <=200K / $4.00 >200K | $0.20 / $0.40 | $12.00 <=200K / $18.00 >200K | Google pricing tiered by prompt size. |
Two practical notes: first, DeepSeek’s pricing page is very competitive on listed token prices, but teams still need to compare model behavior, hosting terms, and reliability. Second, GPT-5.5, Claude Opus 4.8, and Gemini 3.1 Pro pricing can vary by mode, surface, region, and provider. Treat every price in this article as a snapshot checked on June 17, 2026.
GLM-5.2 vs Other Open-Weight Models
Against DeepSeek-V4-Pro, the comparison is especially interesting because DeepSeek’s public material emphasizes a 1M context window, hybrid attention, a 1.6T total-parameter design with 49B active parameters, and very aggressive API pricing. DeepSeek looks extremely strong for teams optimizing cost and long-context access. GLM-5.2’s answer is the model-card benchmark table, MIT licensing, 1M context, and a strong long-horizon coding posture. The right choice will depend on whether your workload rewards raw listed price, benchmark profile, tooling, hosting geography, or local deployment options.
Against MiniMax M3, GLM-5.2 is entering a market where 1M-context open-weight models are already becoming a category. The MiniMax M3 model card describes native multimodality, roughly 428B parameters with about 23B active, 1M context, and long-context efficiency work. Kingy’s own MiniMax M3 launch tracker covered why that mattered: the open model race is increasingly about usable context, not just benchmark screenshots.
Against Kimi, the tradeoff is coding focus versus context and deployment profile. Moonshot’s Kimi K2.7 Code material describes a coding-focused agentic model with 256K context and a 1T-total, 32B-active architecture. Kingy’s earlier coverage of Kimi K2.6 and long-horizon agentic coding showed why Kimi matters: it has been optimized around coding agents rather than generic chat. GLM-5.2 appears to push harder on 1M context and open-weight frontier positioning.
Against Qwen3.7-Max, the comparison is less clean because Qwen is a major frontier platform and the GLM-5.2 table includes Qwen3.7-Max scores, but production users will care about more than the table. They will care about API reliability, ecosystem, enterprise support, availability, and Chinese/English coding performance. GLM-5.2’s advantage is open-weight availability; Qwen’s advantage may be ecosystem and platform integration.

GLM-5.2 vs Claude Opus 4.8, GPT-5.5, And Gemini 3.1 Pro
Claude Opus 4.8 remains one of the most important comparison points for long-horizon coding because Anthropic’s own model overview describes it as an Opus-tier model for complex reasoning, long-horizon agentic coding, and high-autonomy work. In the GLM-5.2 model-card table, Claude Opus 4.8 leads or nearly leads on several coding and agentic benchmarks, including SWE-bench Pro, NL2Repo, ProgramBench, Terminal-Bench, FrontierSWE, PostTrainBench, SWE-Marathon, MCP-Atlas, and Tool-Decathlon.
That does not make GLM-5.2 unimpressive. It means the right framing is “open-weight model reaches into frontier coding territory,” not “closed frontier models are obsolete.” For enterprises, Claude may still win because of polish, workflows, safety features, reliability, and existing procurement. GLM-5.2 may win where MIT-licensed weights, portability, cost control, and model independence matter more.
GPT-5.5 is another heavyweight reference point. OpenAI’s launch and API docs describe a 1M-plus context API model with 128K max output and premium pricing. In the Z.ai table, GPT-5.5 is very strong on DeepSWE and Terminal-Bench, while GLM-5.2 beats GPT-5.5 on several reported coding rows such as SWE-bench Pro, FrontierSWE, PostTrainBench, SWE-Marathon, and MCP-Atlas. Again, that is directional. Real buyers will compare model quality, tool reliability, latency, multimodal behavior, developer platform, and cost.
Gemini 3.1 Pro Preview is the Google comparison. Google’s docs position it for better thinking, token efficiency, groundedness, software engineering, and agentic workflows, with tiered pricing around prompt size. Gemini has the advantage of a broad Google ecosystem and multimodal platform maturity. GLM-5.2’s counterposition is open-weight availability and a public benchmark table that looks stronger on several coding-agent rows.
What GLM-5.2 Is Best For
The first natural use case is codebase-level work. That includes large refactors, framework migrations, dependency upgrades, test stabilization, code search, repository summarization, and agentic coding sessions where the model has to keep architecture and constraints in view. A 1M-context model can hold more surrounding evidence, but teams should still build retrieval, summarization, and verification around it. Throwing the whole repo into context is not a strategy by itself.
The second use case is research and technical analysis. GLM-5.2’s long context and long output ceiling make it interesting for reading many documents, comparing specs, drafting implementation plans, and maintaining a chain of reasoning across multiple source files. That does not eliminate the need for citations, but it can reduce the number of brittle prompt handoffs in a research workflow.
The third use case is model diversification. If your company is building AI products, you probably should not have a one-model religion. Kingy’s guide on which AI model you should use argues for routing by task. GLM-5.2 belongs in that routing conversation as a candidate for long-context coding and open-weight control, while closed models may still handle premium reasoning, multimodal work, compliance-specific review, or customer-facing chat depending on the use case.
The fourth use case is sovereignty-sensitive AI. Some organizations need more control over weights, deployment, logs, and fallback options. GLM-5.2 does not magically solve governance, but MIT-licensed open weights make it more relevant to organizations that want to reduce dependence on one closed provider. Kingy’s article on the future of the firm as a routing layer points toward the likely operating model: companies route each task to the best model under the right security, price, and reliability constraints.
What Remains Unproven
First, the public benchmark table needs independent repetition. The numbers are useful, but buyers should look for third-party evals, platform-specific harnesses, and real workload testing. Fireworks says it validated GPQA-Diamond performance on its engine, which is helpful, but coding-agent quality still depends heavily on the surrounding system.
Second, 1M context needs practical validation. Does GLM-5.2 retrieve the right file from a huge prompt? Does it remember constraints after many tool calls? Does it stay coherent when test logs contradict earlier assumptions? Does cache behavior make the workflow affordable? These are the questions that determine whether the context window is a production advantage or just a launch headline.
Third, deployment economics are still real. Open weights do not mean free inference. A very large model can be expensive to host, optimize, monitor, and scale. Teams with strict latency targets may prefer hosted inference or smaller specialized models. Teams with strict privacy requirements may accept more operational burden to gain control.
Fourth, “open-source” language needs precision. The public material uses open-source and MIT language, and the weights are available under an MIT license. But the practical openness of a model also depends on training transparency, reproducibility, tooling, evaluation, serving stack, and whether users can actually run the model at the quality they need. For most businesses, “open weight under MIT” is the safer phrase.
How Teams Should Test GLM-5.2
Start with one real codebase and one real failure mode. Do not begin with a toy benchmark. Give GLM-5.2 a migration plan, a broken test suite, a codebase map, and a narrow objective. Measure whether it can produce a correct patch, explain tradeoffs, preserve constraints, and use tools without spiraling. Compare it with your current best model under the same workflow.
Next, test the context window honestly. Feed a large but structured workspace: docs, architecture notes, recent errors, known constraints, and selected source files. Then ask questions that require retrieval from distant parts of the context. If it cannot find the right constraint, the context size is less valuable than it looks. If it can, you may have a model that changes how much retrieval and chunk orchestration you need.
Then test price and speed. Run a cached-context session and an uncached session. Track input, cached input, output, latency, and failure rate. In long-horizon coding, a model that is 10% smarter but 4x slower may be worse for the team. A model that is slightly weaker but cheap enough for continuous CI-style analysis may be better.
Finally, test fallback routing. GLM-5.2 should not be evaluated as an island. Compare it with Claude, GPT, Gemini, DeepSeek, Qwen, MiniMax, and Kimi on the parts of your workload they are likely to handle. A production AI stack is becoming a router, not a monument to one model.
FAQ
Is GLM-5.2 open source?
The Hugging Face model card lists GLM-5.2 under an MIT license and makes the weights available. For precision, this article calls it an open-weight model under MIT licensing. “Open source” can mean more than weights, depending on training code, data transparency, and reproducibility.
What is GLM-5.2’s context window?
Z.ai’s developer docs and model-card material list a 1M-token context window. The practical question is how well the model uses that context in real long-horizon tasks.
How many parameters does GLM-5.2 have?
The Hugging Face model card lists 753B parameters. Fireworks serving metadata lists 743B parameters. Because those public sources differ, this article uses the model-card number for the model and explicitly notes the discrepancy.
Is GLM-5.2 better than Claude Opus 4.8?
Not categorically. The GLM-5.2 table shows it competing strongly on several coding-agent benchmarks, but Claude Opus 4.8 still leads or nearly leads on multiple hard tasks. Test both on your workflow.
Is GLM-5.2 better than GPT-5.5?
It depends on the task. In the GLM-5.2 model-card table, GLM-5.2 is ahead of GPT-5.5 on some reported coding rows and behind on others such as DeepSWE and Terminal-Bench best-harness results. GPT-5.5 also has OpenAI platform advantages that a benchmark table does not capture.
Who should try GLM-5.2 first?
AI engineering teams, coding-agent builders, local-model and open-weight evaluators, CTOs building model-routing stacks, and consultants working on codebase migration or long-context analysis should put GLM-5.2 on their test list.
Bottom Line
GLM-5.2 is one of the most important open-weight AI launches to watch because it pushes the fight into long-horizon coding and agentic engineering, not just chat quality. The model brings a 1M-token context window, 128K output, MIT-licensed weights, hosted API options, context caching, tool/function calling, structured output, and a public benchmark table that makes it look like a serious open-weight challenger.
The responsible conclusion is not hype. GLM-5.2 appears to be a major step for Z.ai and a meaningful signal for the open-weight frontier. It does not erase Claude, GPT, Gemini, Qwen, DeepSeek, MiniMax, or Kimi. It does make the frontier model market more competitive, more routable, and more interesting for teams that care about control. If your work depends on long-context coding agents, GLM-5.2 deserves a real evaluation.
Sources
- Z.ai GLM-5.2 launch post
- Z.ai GLM-5.2 developer docs
- Z.ai pricing docs
- Hugging Face GLM-5.2 model card
- Fireworks GLM-5.2 launch analysis
- Fireworks GLM-5.2 model page
- FrontierSWE
- PostTrainBench
- SWE-Marathon
- MCP-Atlas
- Terminal-Bench 2.1
- SWE-bench Pro Public
- DeepSWE
- Toolathlon / Tool-Decathlon
- Humanity's Last Exam
- GPQA-Diamond
- IMOAnswerBench
- MathArena AIME 2026
- Qwen3.7 official post
- DeepSeek-V4-Pro docs and pricing
- DeepSeek-V4-Pro model card
- MiniMax M3 model card
- Kimi K2.7 Code docs
- Kimi K2.7 Code model card
- Anthropic Claude model docs
- OpenAI GPT-5.5 launch post
- OpenAI GPT-5.5 API docs
- Google Gemini 3.1 Pro docs
- Google Gemini API pricing







