7 Best AI for Debugging Code in 2026

Compare the best ai for debugging code in 2026, from IDE copilots to production fixers, with integrations, pricing trade-offs, and practical use cases.

best AI for debugging codeAI coding toolscode debugging toolsAI developer toolsautomated bug fixing

You're staring at a failing test, an opaque stack trace, or a production alert that arrived at the worst possible time. Three AI tools are open, each promising an instant fix, while the bug sits there like an uninvited houseguest who has no intention of leaving. The best AI for debugging code depends less on flashy model names and more on where the problem lives: your editor, an AWS service, a sprawling monorepo, a live production system, or a privacy-sensitive environment.

Language support, IDE integration, repository context, runtime telemetry, pricing limits, and data-handling policies all matter. This guide compares seven practical options, including GitHub Copilot, Amazon Q Developer, Sourcegraph Cody, Cursor, JetBrains AI Assistant, Tabnine, and Sentry Seer. It also explains where Zemith fits for developers who want coding assistance, debugging explanations, code generation, and access to multiple AI models from one workspace without constant tool switching. For a wider ecosystem view, see this .

1. GitHub Copilot

GitHub Copilot is the broad default for teams already working in GitHub and mainstream development environments. It runs inside VS Code, Visual Studio, JetBrains IDEs, Neovim, terminals, and GitHub.com, so developers don't have to rebuild their workflow around a new editor.

For everyday debugging, Copilot can explain compiler errors, interpret stack traces, suggest inline corrections, generate regression tests, and work through a change in chat. Its agent mode is more useful when a bug crosses several files. You can ask it to trace a failing function, update the implementation, add tests, and explain the changes instead of manually copying snippets between separate prompts.

The GitHub-native workflow is a major advantage. Code review integrations can help identify defects before a pull request is merged, while code referencing can surface matches related to licensing or attribution. That context is valuable when a proposed fix looks suspiciously familiar.

GitHub Copilot

Where Copilot earns its place

Copilot is strongest for editor-level errors, test failures, routine regressions, and pull-request remediation. It's a sensible starting point when your team uses GitHub heavily and wants one assistant available across multiple IDEs.

The trade-off is usage management. Lower tiers can impose quotas and AI Credit limits, especially when agent workflows perform several edits or invoke heavier models. Code review features can also introduce coupling with GitHub Actions usage, so teams should inspect the full workflow cost rather than evaluating only the assistant subscription.

Practical rule: Ask Copilot to reproduce the failure, state its hypothesis, and write a test before accepting a patch. A plausible fix without a regression test is just a bug wearing a nicer shirt.

If you're comparing model choices for coding tasks, this guide to the adds useful context. You can also explore directly.

2. Amazon Q Developer

Amazon Q Developer is the natural candidate when the bug lives somewhere in AWS rather than solely inside a local file. It works across IDEs and the command line, and it's also available in the AWS Console, where it can help diagnose common service failures and answer questions about why a deployment or resource is failing.

That placement changes the debugging experience. Instead of copying an error from the console into a separate chat, you can investigate it closer to the service producing the problem. Q Developer can propose corrected code, explain likely causes, and handle agentic, multi-step changes when the fix requires edits across a project.

The free tier makes individual experimentation straightforward, while the Pro tier adds higher limits and administrative and intellectual-property protections. Q Developer also supports transformation agents for larger upgrades, including Java and .NET changes. That's helpful for modernization work, but it's where cost tracking becomes more important.

Amazon Q Developer (successor to CodeWhisperer)

Best fit for AWS failures

Use Q Developer for CloudFormation problems, IAM confusion, Lambda errors, infrastructure configuration, and application code that depends on AWS services. It's less compelling if your debugging work is entirely local and your team never touches the AWS Console.

Transformation usage needs careful planning. Allocated lines of code can be pooled monthly, and overages are billed per line, so a large migration can create a cost surprise if nobody monitors the transformation scope. Reference tracking and public-code suppression controls are useful for teams that need clearer boundaries around generated suggestions.

A practical workflow is to give Q Developer the failing log, the relevant resource configuration, and the expected behavior. Then ask it to separate service-level causes from application-level causes before changing anything. Pair that process with a broader , especially when the debugging task turns into a larger remediation project.

Visit to check the current integrations and plan details.

3. Sourcegraph Cody

Sourcegraph Cody makes its strongest case in repositories where a local file never tells the whole story. A shared library changes behavior, several services depend on it, and the error appears far away from the original commit. In that situation, autocomplete alone is a bit like diagnosing a plumbing problem by inspecting one faucet.

Cody uses Sourcegraph's code graph and search capabilities to bring broader repository context into the conversation. It can inspect symbols, usages, related implementations, branches, and connected code across repositories. That makes it especially useful for monorepos, distributed services, and shared platform components.

The debugging advantage is context discovery. Instead of asking, “What does this function do?” you can ask, “Where is this function used, which callers make assumptions about its return value, and what changed between the working and failing paths?” Cody's strength is helping answer those questions before anyone edits code.

When repository context matters

Cody is available through VS Code, JetBrains IDEs, Visual Studio, the web, and the CLI. Multiple clients matter in large teams because incident investigation doesn't always begin in the same place. An engineer may start with a browser search, move to an IDE, then use the terminal to inspect build output.

The setup burden is also real. You'll get more value when Sourcegraph code search and navigation are properly configured, and enterprise teams need to verify current seat, credit, quota, analytics, and guardrail details before rollout. Those details can vary by plan.

For teams documenting dependencies visually, a workflow that can can complement Cody's repository navigation. It's useful when explaining call paths to someone who didn't write the original service.

Use when the question is not “What patch compiles?” but “What else will this patch break?”

4. Cursor

Cursor is an AI-native editor for developers who want the assistant to participate in an iterative debugging loop. It isn't just an add-on that occasionally suggests a line. Its agentic workflows can inspect a project, reason through a failure, edit several files, run commands, and continue based on the results.

That makes Cursor a strong choice for multi-file fixes, refactors triggered by a bug, and debugging sessions where you want to stay inside an AI-focused editor. Its Auto modes can route work between available models, while integrated model selection lets you choose a preferred balance between reasoning quality, speed, and spend.

Cursor also supports major third-party models alongside its own models. For teams, pooled usage can make budgeting easier than assigning every developer a completely separate allowance. Enterprise documentation includes explicit token-rate information, but the total calculation still requires attention.

Cursor

The cost of flexibility

Cursor's flexibility is both its selling point and its accounting exercise. When you use third-party models, Cursor adds its own per-million-token rate on top of the provider's model pricing. A long debugging session can involve repeated context reads, command output, and revisions, so the displayed model price doesn't necessarily represent the whole bill.

That doesn't make Cursor a poor choice. It means teams should set usage expectations, watch agent behavior, and review which models solve their representative bugs without unnecessary retries. You'll also want to establish approval rules before allowing an agent to modify production-related code.

Cursor suits developers who want an AI-first editor with granular model and spend control. It's less suitable for teams that need everyone to remain in an existing IDE or that prefer one predictable, simple licensing model.

Try with a small set of real bugs. Don't benchmark it only on toy functions. Give it a failing integration test, a stale dependency, and a bug that requires understanding how several files interact.

5. JetBrains AI Assistant

JetBrains AI Assistant is the practical choice for developers who already live inside IntelliJ-based tools. If your day starts in IntelliJ IDEA, PyCharm, WebStorm, Rider, or another JetBrains IDE, keeping debugging assistance beside inspections, navigation, stack traces, and run configurations has an obvious advantage.

The assistant can explain errors, suggest quick fixes, generate tests, refactor code, and work against the project context already available in the IDE. That's particularly useful for Java, Kotlin, .NET, Python, JavaScript, and other JetBrains-centered workflows where the IDE's own analysis is already part of the debugging process.

The multi-model foundation gives teams access to providers including OpenAI, Anthropic, Google, and xAI, depending on the plan and configuration. Enterprise options also provide clearer provider and data-handling documentation, which matters when source code can't be treated as disposable prompt material.

JetBrains AI Assistant

Native context beats another browser tab

JetBrains uses an AI Credit system tied to subscription tiers rather than presenting every workflow as unlimited. The credit mapping is approximately one credit to one US dollar, so teams need to understand how actions consume credits before forecasting spend.

That model can work well for organizations that want provider transparency and a native experience, but it asks administrators to monitor usage patterns. A developer who repeatedly sends large project contexts while chasing one elusive test failure can consume credits faster than expected.

Use JetBrains AI Assistant when IDE fit is your first requirement. It's not the obvious choice for a team standardized on VS Code, but it can feel substantially more natural for JetBrains users because the assistant appears where the error already lives.

Check for current IDE support, plans, providers, and data policies.

6. Tabnine

Tabnine stands out when privacy and deployment control matter more than chasing the newest agent behavior. It supports cloud, on-premises, VPC, and air-gapped deployment options, giving regulated organizations more ways to keep sensitive code inside approved boundaries.

For debugging, Tabnine combines IDE chat, multi-line fixes, completions, agentic workflows, and terminal-native assistance. It can ground suggestions in the organization's codebase and policies, while Jira and Confluence integrations can add ticket and documentation context to an investigation. That's valuable when the root cause is partly encoded in an old incident ticket or an internal runbook nobody has opened since the last outage.

Controlled environments and controlled expectations

Tabnine is strongest for privacy-sensitive codebases, regulated teams, and organizations that need deployment choices beyond a vendor-hosted cloud. Its user-in-the-loop options also support a cautious operating model. The assistant can propose a change, while the developer decides when to apply it and which tests must pass.

The cost structure depends on deployment. If you use Tabnine-hosted language models, reserved token quotas can add provider pricing and a handling fee. Bringing your own model can simplify that part of the cost picture, but it requires extra configuration and operational ownership.

Tabnine

Don't treat privacy as a checkbox. Confirm where prompts, source files, logs, and generated patches are processed, then test the assistant with realistic repository policies. This can help frame that evaluation.

earns its place when the best debugging assistant is the one your security team will approve.

7. Sentry Seer and Autofix

Sentry Seer is built for a different debugging moment. The issue isn't an editor squiggle or a test that fails on your laptop. It's a live production exception with a stack trace, trace data, logs, profiles, and an urgent need to understand what happened.

Seer uses runtime telemetry to investigate probable root causes, propose code changes, and draft pull requests. That makes it particularly strong for production incidents, recurring crashes, and failures that are difficult to reproduce locally. Static code assistants can reason about what code appears to do. Seer can add evidence about what the application did.

Its automation is step-gated. You can request a root-cause analysis, ask for a plan, generate code changes, or proceed to a pull-request draft. GitHub integration helps connect the diagnosis to a reviewable remediation workflow rather than dropping an untested patch directly into the codebase.

Runtime evidence changes the investigation

Seer's value depends on groundwork. Your team needs Sentry running, useful code mappings configured, and integrations connected. Pricing also follows Sentry usage concepts such as contributors and automation, so estimate the likely cost before enabling broad access.

The tool can connect with an IDE and agent ecosystem through MCP, bringing Sentry context into tools such as Cursor or Claude. That hybrid workflow is attractive when developers want production evidence and an AI-native editing environment in the same investigation.

A sensible incident process is:

  • Confirm the failure: Review the affected release, stack trace, trace path, logs, and surrounding user impact.
  • Request an explanation first: Ask Seer to identify likely causes and missing evidence before generating code.
  • Draft, don't blindly deploy: Send the proposed change into a pull request with tests and human review.
  • Record the learning: Update the runbook so the next incident doesn't begin from zero.

For a broader look at debugging assistants and workflows, see this . is the specialized pick when the bug is already making noise in production.

Top 7 AI Debugging Tools Comparison

SolutionImplementation Complexity 🔄Resource Requirements & Cost ⚡Expected Outcomes ⭐📊Ideal Use Cases 💡Key Advantages ⭐
GitHub Copilot🔄🔄 - Native IDE plugins, easy setup in common editors⚡⚡ - Subscription + AI credits; GitHub Actions minutes may add cost⭐⭐⭐⭐ - Strong inline fixes, test generation, PR-aware suggestionsDeveloper workflows inside VS Code/VS/JetBrains and GitHub PRsBroad editor support; multi-model access; seamless GitHub integration
Amazon Q Developer🔄🔄🔄 - IDE/CLI + AWS Console integrations; agent features add setup⚡⚡⚡ - Perpetual free tier; Pro tier and per-LOC transformation billing⭐⭐⭐⭐ - Good error diagnosis, agentic fixes, transformation toolingAWS-centric apps, console error diagnosis, large migrationsFree starter tier; Anthropic model access; AWS-native features
Sourcegraph Cody🔄🔄🔄🔄 - Requires Sourcegraph code search/graph setup for full value⚡⚡⚡ - Seat/credit pricing; may require infrastructure for code graph⭐⭐⭐⭐⭐ - Excellent cross-repo context and accurate fix recommendationsLarge monorepos, multi-repo services, cross-team code understandingWhole-codebase context; tight Code Search and navigation integration
Cursor🔄🔄🔄 - AI-native IDE with agentic Auto modes; moderate setup for teams⚡⚡⚡ - Per-token pricing; pooled team usage but added platform fees⭐⭐⭐⭐ - Iterative, agent-driven debugging with model routingTeams needing model choice, cost control, heavy debugging burstsFine-grained model selection; pooled enterprise usage; transparent token rates
JetBrains AI Assistant🔄🔄 - Built into IntelliJ IDEs; minimal extra setup for JetBrains users⚡⚡ - Credit-based usage mapped to subscription tiers⭐⭐⭐⭐ - Helpful stack-trace explanation, quick fixes, test/refactor assistsDevelopers using JetBrains IDEs who want in-context AI assistanceNative IDE experience; multi-provider routing and enterprise options
Tabnine🔄🔄🔄 - Flexible deployments (cloud/on‑prem/air‑gapped) add configuration steps⚡⚡⚡ - Hosted LLM quotas or BYO costs; deployment brings infra costs⭐⭐⭐⭐ - Privacy-forward completions, code-grounded fixes, agent flowsRegulated or sensitive environments requiring on‑prem or VPC deploymentsStrong enterprise privacy controls; integrations with issue tracking
Sentry Seer (Autofix)🔄🔄🔄 - Requires Sentry runtime telemetry, code mappings, and integrations⚡⚡ - Pricing tied to Sentry usage/automation; estimate before enabling⭐⭐⭐⭐⭐ - Fast root-cause analysis and PR-draftable fixes for production errorsProduction incident response, crash RCA, urgent bug remediationRuntime-telemetry-driven RCA; step-gated Autofix and GitHub PR drafts

Choose the Debugging Workflow, Not Just the Flashiest Model

The most useful tool is the one that reduces total debugging time, including verification, review, failed attempts, and the follow-up work created by an almost-correct answer. A 2025 Stack Overflow Developer Survey found that 66% of developers said AI solutions are almost right but not quite, while 45% said debugging AI-generated code is more time-consuming. That evidence shifts the buying question from “Which model writes the cleverest patch?” to “Which workflow helps us reach a verified fix with less rework?” provides the broader developer context.

Adoption alone doesn't guarantee confidence. A 2026 industry survey reported that 72% of developers who had tried AI coding tools used them daily, but 96% didn't fully trust generated code to be functionally correct. Only 48% said they always checked AI-assisted code before committing, which creates a verification gap that directly affects debugging quality. Read the before setting team policy.

Use this selection process:

  • Match the environment: Choose GitHub Copilot for a broad mainstream editor and GitHub workflow, JetBrains AI Assistant for IntelliJ-based development, and Cursor when you want an AI-native editor.
  • Match the failure location: Choose Amazon Q Developer for AWS-centered errors, Sourcegraph Cody for monorepo and cross-repository dependencies, and Sentry Seer for runtime incidents.
  • Match the privacy boundary: Evaluate Tabnine when on-premises, VPC, or air-gapped deployment is important.
  • Test representative bugs: Use real stack traces, failing integration tests, dependency conflicts, concurrency problems, and production-shaped logs. Don't rely on a tidy code-generation demo.
  • Verify every fix: Require tests, review, security checks, and clear explanations of changed files. A 2025 randomized controlled trial reported that AI-assisted developers scored 17% lower on comprehension tests, with the largest gap on debugging questions, while their roughly two-minute speed advantage wasn't statistically significant. The is a useful warning against trading understanding for velocity.
  • Inspect usage limits: Review quotas, credits, token rates, action limits, transformation allowances, and any infrastructure costs connected to agent or review workflows.
  • Measure the whole loop: Track how often suggestions pass tests, how much manual correction they need, and whether the assistant reduces or increases time spent investigating generated code.

GitHub Copilot serves as the broad starting point. Sourcegraph Cody is the stronger fit for codebase-wide context, Amazon Q Developer for AWS debugging, Sentry Seer for production incidents, JetBrains AI Assistant for native JetBrains workflows, Tabnine for controlled deployments, and Cursor for model and spend flexibility inside an AI-first editor.

Zemith is relevant when you want coding assistance, debugging explanations, code generation, live previews, and access to multiple leading models in one organized workspace. Its Coding Assistant can help interpret failing snippets and stack traces, analyze code, and inspect React or HTML changes through live previews. That won't replace tests, observability, or engineering judgment, but consolidating model access may reduce the subscription and context-switching overhead that accumulates during difficult debugging sessions.


Use to bring coding assistance, debugging support, explanations, and multiple AI models into one workspace. Try it with a real failing test or stack trace, compare the result with your current workflow, and keep the tools that produce fixes you can verify.

Explore Zemith Features

Everything you need. Nothing you don't.

One subscription replaces five. Every top AI model, every creative tool, and every productivity feature, in one focused workspace.

Every top AI. One subscription.

ChatGPT, Claude, Gemini, DeepSeek, Grok & 25+ more

OpenAI
OpenAI
Anthropic
Anthropic
Google
Google
DeepSeek
DeepSeek
xAI
xAI
Perplexity
Perplexity
OpenAI
OpenAI
Anthropic
Anthropic
Google
Google
DeepSeek
DeepSeek
xAI
xAI
Perplexity
Perplexity
Meta
Meta
Mistral
Mistral
MiniMax
MiniMax
Recraft
Recraft
Stability
Stability
Kling
Kling
Meta
Meta
Mistral
Mistral
MiniMax
MiniMax
Recraft
Recraft
Stability
Stability
Kling
Kling
25+ models · switch anytime

Always on, real-time AI.

Voice + screen share · instant answers

LIVE
You

What's the best way to learn a new language?

Zemith

Immersion and spaced repetition work best. Try consuming media in your target language daily.

Voice + screen share · AI answers in real time

Image Generation

Flux, Nano Banana, Ideogram, Recraft + more

AI generated image
1:116:99:164:33:2

Write at the speed of thought.

AI autocomplete, rewrite & expand on command

AI Notepad

Any document. Any format.

PDF, URL, or YouTube → chat, quiz, podcast & more

📄
research-paper.pdf
PDF · 42 pages
📝
Quiz
Interactive
Ready

Video Creation

Veo, Kling, Grok Imagine and more

AI generated video preview
5s10s720p1080p

Text to Speech

Natural AI voices, 30+ languages

Code Generation

Write, debug & explain code

def analyze(data):
summary = model.predict(data)
return f"Result: {summary}"

Chat with Documents

Upload PDFs, analyze content

PDFDOCTXTCSV+ more

Your AI, in your pocket.

Full access on iOS & Android · synced everywhere

Get the app
Everything you love, in your pocket.

Your infinite AI canvas.

Chat, image, video & motion tools — side by side

Workflow canvas showing Prompt, Image Generation, Remove Background, and Video nodes connected together

Save hours of work and research

Transparent, High-Value Pricing

Trusted by teams at

Google logoHarvard logoCambridge logoNokia logoCapgemini logoZapier logo
OpenAI
OpenAI
Anthropic
Anthropic
Google
Google
DeepSeek
DeepSeek
xAI
xAI
Perplexity
Perplexity
MiniMax
MiniMax
Kling
Kling
Recraft
Recraft
Meta
Meta
Mistral
Mistral
Stability
Stability
OpenAI
OpenAI
Anthropic
Anthropic
Google
Google
DeepSeek
DeepSeek
xAI
xAI
Perplexity
Perplexity
MiniMax
MiniMax
Kling
Kling
Recraft
Recraft
Meta
Meta
Mistral
Mistral
Stability
Stability
4.6
30,000+ users
Enterprise-grade security
Cancel anytime

Free

$0
free forever
 

No credit card required

  • 100 credits daily
  • 3 AI models to try
  • Basic AI chat
Most Popular

Plus

14.99per month
Billed yearly
~1 month Free with Yearly Plan
  • 1,000,000 credits/month
  • 25+ AI models — GPT, Claude, Gemini, Grok & more
  • Agent Mode with web search, computer tools and more
  • Creative Studio: image generation and video generation
  • Project Library: chat with document, website and youtube, podcast generation, flashcards, reports and more
  • Workflow Studio and FocusOS

Professional

24.99per month
Billed yearly
~2 months Free with Yearly Plan
  • Everything in Plus, and:
  • 2,100,000 credits/month
  • Pro-exclusive models (Claude Opus, Grok 4, Sonar Pro)
  • Motion Tools & Max Mode
  • First access to latest features
  • Access to additional offers
Features
Free
Plus
Professional
100 Credits Daily
1,000,000 Credits Monthly
2,100,000 Credits Monthly
3 Free Models
Access to Plus Models
Access to Pro Models
Unlock all features
Unlock all features
Unlock all features
Access to FocusOS
Access to FocusOS
Access to FocusOS
Agent Mode with Tools
Agent Mode with Tools
Agent Mode with Tools
Deep Research Tool
Deep Research Tool
Deep Research Tool
Creative Feature Access
Creative Feature Access
Creative Feature Access
Video Generation
Video Generation (Via On-Demand Credits)
Video Generation (Via On-Demand Credits)
Project Library Access
Project Library Access
Project Library Access
0 Sources per Library Folder
50 Sources per Library Folder
50 Sources per Library Folder
Unlimited model usage for Gemini 2.5 Flash Lite
Unlimited model usage for Gemini 2.5 Flash Lite
Unlimited model usage for GPT 5 Mini
Access to Document to Podcast
Access to Document to Podcast
Access to Document to Podcast
Auto Notes Sync
Auto Notes Sync
Auto Notes Sync
Auto Whiteboard Sync
Auto Whiteboard Sync
Auto Whiteboard Sync
Access to On-Demand Credits
Access to On-Demand Credits
Access to On-Demand Credits
Access to Computer Tool
Access to Computer Tool
Access to Computer Tool
Access to Workflow Studio
Access to Workflow Studio
Access to Workflow Studio
Access to Motion Tools
Access to Motion Tools
Access to Motion Tools
Access to Max Mode
Access to Max Mode
Access to Max Mode
Set Default Model
Set Default Model
Set Default Model
Access to latest features
Access to latest features
Access to latest features

What Our Users Say

Great Tool after 2 months usage

simplyzubair

I love the way multiple tools they integrated in one platform. So far it is going in right dorection adding more tools.

Best in Kind!

barefootmedicine

This is another game-change. have used software that kind of offers similar features, but the quality of the data I'm getting back and the sheer speed of the responses is outstanding. I use this app ...

simply awesome

MarianZ

I just tried it - didnt wanna stay with it, because there is so much like that out there. But it convinced me, because: - the discord-channel is very response and fast - the number of models are quite...

A Surprisingly Comprehensive and Engaging Experience

bruno.battocletti

Zemith is not just another app; it's a surprisingly comprehensive platform that feels like a toolbox filled with unexpected delights. From the moment you launch it, you're greeted with a clean and int...

Great for Document Analysis

yerch82

Just works. Simple to use and great for working with documents and make summaries. Money well spend in my opinion.

Great AI site with lots of features and accessible llm's

sumore

what I find most useful in this site is the organization of the features. it's better that all the other site I have so far and even better than chatgpt themselves.

Excellent Tool

AlphaLeaf

Zemith claims to be an all-in-one platform, and after using it, I can confirm that it lives up to that claim. It not only has all the necessary functions, but the UI is also well-designed and very eas...

A well-rounded platform with solid LLMs, extra functionality

SlothMachine

Hey team Zemith! First off: I don't often write these reviews. I should do better, especially with tools that really put their heart and soul into their platform.

This is the best tool I've ever used. Updates are made almost daily, and the feedback process is very fast.

reu0691

This is the best AI tool I've used so far. Updates are made almost daily, and the feedback process is incredibly fast. Just looking at the changelogs, you can see how consistently the developers have ...

Available Models
Free
Plus
Professional
Google
Gemini 2.5 Flash Lite
Gemini 2.5 Flash Lite
Gemini 2.5 Flash Lite
Gemini 3.1 Flash Lite
Gemini 3.1 Flash Lite
Gemini 3.1 Flash Lite
Gemini 3 Flash
Gemini 3 Flash
Gemini 3 Flash
Gemini 3.1 Pro
Gemini 3.1 Pro
Gemini 3.1 Pro
OpenAI
GPT 5 Nano
GPT 5 Nano
GPT 5 Nano
GPT 5 Mini
GPT 5 Mini
GPT 5 Mini
GPT 5.2
GPT 5.2
GPT 5.2
GPT 5.4
GPT 5.4
GPT 5.4
GPT 4o Mini
GPT 4o Mini
GPT 4o Mini
GPT 4o
GPT 4o
GPT 4o
Anthropic
Claude 4.5 Haiku
Claude 4.5 Haiku
Claude 4.5 Haiku
Claude 4.6 Sonnet
Claude 4.6 Sonnet
Claude 4.6 Sonnet
Claude 4.6 Opus
Claude 4.6 Opus
Claude 4.6 Opus
DeepSeek
DeepSeek V3.2
DeepSeek V3.2
DeepSeek V3.2
DeepSeek R1
DeepSeek R1
DeepSeek R1
Mistral
Mistral Small 3.1
Mistral Small 3.1
Mistral Small 3.1
Mistral Medium
Mistral Medium
Mistral Medium
Mistral 3 Large
Mistral 3 Large
Mistral 3 Large
Perplexity
Perplexity Sonar
Perplexity Sonar
Perplexity Sonar
Perplexity Sonar Pro
Perplexity Sonar Pro
Perplexity Sonar Pro
xAI
Grok 4.1 Fast
Grok 4.1 Fast
Grok 4.1 Fast
Grok 4
Grok 4
Grok 4
zAI
GLM 5
GLM 5
GLM 5
Alibaba
Qwen 3.5 Plus
Qwen 3.5 Plus
Qwen 3.5 Plus
Minimax
M 2.5
M 2.5
M 2.5
Moonshot
Kimi K2.5
Kimi K2.5
Kimi K2.5
Inception
Mercury 2
Mercury 2
Mercury 2