All Claudette settings live inDocumentation 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.sublime-settings. To open the file, go to Preferences > Package Settings > Claudette > Settings. Settings you define in your user file override the defaults from the package defaults file.
API settings
api_key
api_key
Type: string or object
Default:See Configure API Keys for details.
Default:
""Your Anthropic API key. Accepts a plain string for a single key, or an object with a keys array and active_key index for multiple keys.base_url
base_url
Type: string
Default:
Default:
"https://api.anthropic.com/v1/"The base URL for all API requests. Change this to use a proxy or a compatible API endpoint.verify_ssl
verify_ssl
Type: boolean
Default:
Default:
trueWhether to verify SSL certificates when making API requests. Set to false to allow self-signed certificates on custom base_url endpoints.custom_headers
custom_headers
Type: object
Default:
Default:
{}Optional custom HTTP headers included in every API request. Useful for proxies that require authentication headers.Model settings
model
model
Type: string
Default:See Choosing Claude Models for a full breakdown and output limits.
Default:
"claude-sonnet-4-5"The Claude model to use for all requests. You can also switch models at runtime with Claudette: Switch Model.max_tokens
max_tokens
Type: integer
Default:
Default:
8192Maximum number of output tokens per response. Must not exceed the selected model’s output limit — the API returns a 400 error if it does.temperature
temperature
Type: string or number
Default:
Range:
Default:
"1.0"Range:
0.0 – 1.0Controls response randomness. Lower values produce more deterministic output; higher values produce more varied responses. Values outside the valid range fall back to 1.0.System prompts
system_messages
system_messages
Type: array of strings
Default: Three built-in prompts (programming, writing, general)The list of available system prompts. The active prompt is selected by
Default: Three built-in prompts (programming, writing, general)The list of available system prompts. The active prompt is selected by
default_system_message_index.default_system_message_index
default_system_message_index
Type: integer
Default:
Default:
0Zero-based index of the active system prompt in system_messages. If the index is out of range or the array is empty, no system prompt is sent.Tools
web_search
web_search
Type: boolean
Default:
Default:
falseWhen true, Claude can search the web for up-to-date information. Only works with supported models (Claude Opus 4.6, 4.5, Sonnet 4.5, Haiku 4.5). Web search is billed at $10 per 1,000 searches in addition to token costs.web_search_max_uses
web_search_max_uses
Type: integer
Default:
Range:
Default:
5Range:
1 – 20Maximum number of web searches Claude can make per request when web_search is enabled.web_search_allowed_domains
web_search_allowed_domains
Type: array of strings
Default:
Default:
[]Restrict web search results to specific domains. Leave empty to allow all domains. Do not set both web_search_allowed_domains and web_search_blocked_domains at the same time.web_search_blocked_domains
web_search_blocked_domains
Type: array of strings
Default:
Default:
[]Exclude specific domains from web search results. Do not set both web_search_blocked_domains and web_search_allowed_domains at the same time.text_editor_tool
text_editor_tool
Type: boolean
Default:
Default:
falseWhen true, Claude can view and edit files in your project using the text editor tool (view, str_replace, create, insert commands). Uses non-streaming requests. Paths are resolved against project folders or text_editor_tool_roots.text_editor_tool_max_characters
text_editor_tool_max_characters
Type: integer
Default: not set (no limit)Maximum number of characters Claude can read when viewing a file (Claude 4 tool only). Set to
Default: not set (no limit)Maximum number of characters Claude can read when viewing a file (Claude 4 tool only). Set to
0 for no limit. This setting is optional and commented out by default.text_editor_tool_roots
text_editor_tool_roots
Type: array of strings
Default:
Default:
[]Additional directory paths allowed for file operations. Paths must be under these roots or the current project folders.Pricing
pricing
pricing
Type: object
Default: April 2026 ratesToken pricing per 1M tokens, used to calculate and display cost information in the chat view. ContainsUpdate these values if Anthropic changes its pricing. Current rates are listed at anthropic.com/pricing.
Default: April 2026 ratesToken pricing per 1M tokens, used to calculate and display cost information in the chat view. Contains
haiku, opus, and sonnet sub-objects, each with input, output, cache_write, and cache_read fields (USD).Chat view
chat.line_numbers
chat.line_numbers
Type: boolean
Default:
Default:
falseShow line numbers in the chat view.chat.rulers
chat.rulers
Type: boolean
Default:
Default:
falseShow rulers in the chat view.chat.set_scratch
chat.set_scratch
Type: boolean
Default:
Default:
trueWhen true, the chat view is marked as a scratch buffer and closes without prompting to save.chat.show_cost
chat.show_cost
Type: boolean
Default:
Default:
trueShow estimated cost information after each response in the chat view.