lightbulbModel Selection

Qodo supports a wide range of LLMs (Large Language Models). This guide walks you through configuring different models, including commercial APIs, open-source models, and local setups.

circle-check
circle-exclamation

We strongly recommend keeping the default model.

Default model

Qodo is continuously benchmarking the performance of the latest LLM models and we always use the models that produce the best results for code review. The default models used by Qodo (as of December 2025) is GPT-5.2. In some cases we use other models from the major LLM providers (Anthropic and Google) for redundancy and for higher suitability with specific use cases.

Restrict Qodo to use a specific model

To restrict Qodo to using only one model, add this setting to the configuration file:

[config]
model = "..."

The models currently supported are:

  • gpt-5

  • claude-4-sonnet

  • o4-mini

  • gemini-2.5-pro

  • deepseek/r1

Change model

To switch models, edit the configuration file:

Some models require additional parameters or API keys, depending on the provider. These can be configured either in .secrets.toml or as environment variables.

Refer to the LiteLLM documentationarrow-up-right for up-to-date model-specific variables.

Last updated