Skip to content

Commit 7275bab

Browse files
committed
docs: mark Claude 3.5 as legacy; update LiteLLM example to 3.7 model
1 parent 82f40cd commit 7275bab

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

docs/providers/claude-code.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,15 @@ export CLAUDE_CODE_MAX_OUTPUT_TOKENS=32768 # Set to 32k tokens
9999
The Claude Code provider supports these Claude models:
100100

101101
- **Claude Opus 4.1** (Most capable)
102-
- **Claude Opus 4**
102+
- **Claude Opus 4**
103103
- **Claude Sonnet 4** (Latest, recommended)
104104
- **Claude 3.7 Sonnet**
105-
- **Claude 3.5 Sonnet**
106-
- **Claude 3.5 Haiku** (Fast responses)
105+
106+
:::note Legacy models
107+
These older models may still be available via the Claude CLI depending on your subscription, but are no longer recommended in new setups:
108+
- Claude 3.5 Sonnet
109+
- Claude 3.5 Haiku
110+
:::
107111

108112
The specific models available depend on your Claude CLI subscription and plan.
109113

docs/providers/litellm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ When you configure the LiteLLM provider, Roo Code interacts with your LiteLLM se
133133
* `supportsImages`: Determined from `model_info.supports_vision` provided by LiteLLM.
134134
* `supportsPromptCache`: Determined from `model_info.supports_prompt_caching` provided by LiteLLM.
135135
* `inputPrice` / `outputPrice`: Calculated from `model_info.input_cost_per_token` and `model_info.output_cost_per_token` from LiteLLM.
136-
* `supportsComputerUse`: This flag is set to `true` if the underlying model identifier (from `litellm_params.model`, e.g., `openrouter/anthropic/claude-3.5-sonnet`) matches one of the Anthropic models predefined in Roo Code as suitable for "computer use" (see `COMPUTER_USE_MODELS` in technical details).
136+
* `supportsComputerUse`: This flag is set to `true` if the underlying model identifier (from `litellm_params.model`, e.g., `openrouter/anthropic/claude-3.7-sonnet-20250219`) matches one of the Anthropic models predefined in Roo Code as suitable for "computer use" (see `COMPUTER_USE_MODELS` in technical details).
137137

138138
Roo Code uses default values for some of these properties if they are not explicitly provided by your LiteLLM server's `/model/info` endpoint for a given model. The defaults are:
139139
* `maxTokens`: 8192

0 commit comments

Comments
 (0)