Junie Help

Model selection

Environment variable

CLI equivalent

Description

JUNIE_MODEL
--model

LLM model to use. If not specified, Junie uses the Default model — a dynamically set option with the best price-quality ratio.

JUNIE_LLM_PROVIDER
--provider

BYOK provider to use. Forces Junie to use a specific BYOK provider. Possible values: openai, anthropic, google, xai, openrouter. If not set, the Junie or Custom model provider is used.

To see all available models, run junie --help or use /model in interactive mode.

LLM providers

Junie supports three types of LLM providers:

  • Junie — models accessed through a JetBrains AI subscription, by means of a Junie login or a JetBrains AI API key. No additional configuration is required.

  • BYOK (Bring Your Own Key) — models accessed using your own API key from a third-party provider such as OpenAI, Anthropic, Google, xAI, or OpenRouter. See BYOK for setup instructions.

  • Custom — models defined in a custom profile JSON file. See Custom LLM models for details.

When a model is available through multiple providers, Junie prefers the Junie provider by default. Use --provider to override this behavior.

How Junie uses models internally

The model you select (or the Default) is your primary model — Junie uses it for the main reasoning and code generation work.

However, Junie also uses a separate model for certain internal tasks such as:

  • Summarizing context

  • Classifying and routing tasks

  • Extracting information for memory

  • Filtering capabilities

  • Other helper tasks

These internal tasks don't need the full power of the primary model, so Junie automatically picks an alternative from the same provider. Note that these models are not always smaller — for example, routing may use GPT-4.1 by default. If your primary model is from Anthropic, the helper model will typically be Claude Haiku; if it's from Google, it will be Gemini Flash.

This applies even when using BYOK. If you bring your own API key, Junie will still use a separate model from the same provider for these internal tasks. This means you may see API calls to a model you didn't explicitly select — that's expected and helps keep costs down and responses fast. For more details on configuring custom LLM providers, see Custom LLM Models.

Junie CLI also supports model aliases. Each model alias ID always points to the latest supported version of that model.

Model ID

Provider

Description

sonnet

Anthropic

The latest Claude Sonnet model.

opus

Anthropic

The latest Claude Opus model.

gpt

OpenAI

The latest GPT model.

gpt-codex

OpenAI

The latest GPT Codex model.

gemini-pro

Google

The latest Gemini Pro model.

gemini-flash

Google

The latest Gemini Flash model.

grok

xAI

The latest Grok model.

27 March 2026