Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/barryceelen/claudette/llms.txt

Use this file to discover all available pages before exploring further.

Claudette lets you choose which Claude model powers your conversations. You can set a default in your settings file or switch models on the fly using a command palette panel that fetches the available model list directly from the API.

Default model

The default model is claude-sonnet-4-5. To use a different model as your default, set the model key in your settings file.
{
  "model": "claude-opus-4-5"
}
Open the settings file at Preferences > Package Settings > Claudette > Settings.

Switching models via command

To change the active model without editing your settings file, open the command palette and run Claudette: Switch Model (claudette_select_model_panel). Claudette fetches the current list of available models live from the Anthropic API and displays them in a quick panel. Selecting a model updates the model setting and saves it immediately.
Claudette: Switch Model requires a valid API key to fetch the model list from the API.

Max tokens

The max_tokens setting controls the maximum number of output tokens per response. The default is 8192. The value must not exceed the output limit of the selected model — the API returns a 400 error if it does.
{
  "max_tokens": 8192
}
Common model output limits:
ModelOutput limit
Claude Opus 4.6128,000 tokens
Claude Sonnet 4.5 / Haiku 4.564,000 tokens
Claude Sonnet 4 / Opus 48,192 tokens

Temperature

The temperature setting controls the randomness of Claude’s responses. Lower values produce more deterministic output; higher values produce more varied responses. The valid range is 0.0 to 1.0, and the default is 1.0.
{
  "temperature": "0.7"
}
Values outside the 0.01.0 range are ignored and fall back to 1.0.
For code generation and factual tasks, a lower temperature (e.g., 0.20.5) tends to produce more consistent results. For creative writing, keep it closer to 1.0.
For a full list of available Claude models and their capabilities, see the Anthropic models documentation.

Build docs developers (and LLMs) love