mirror of
https://github.com/farion1231/cc-switch.git
synced 2026-06-16 13:34:04 +08:00
fix(presets): refresh stale context windows for DeepSeek and Claude 1M
- DeepSeek V3.2 / R1 (Hermes, OpenClaw): 64K → 128K context - DeepSeek R1 max output: 8K → 64K (includes CoT tokens) - Claude Opus 4.7 / Sonnet 4.6 via OpenRouter: 200K → 1M context
This commit is contained in:
@@ -136,13 +136,13 @@ export const hermesProviderPresets: HermesProviderPreset[] = [
|
||||
{
|
||||
id: "anthropic/claude-opus-4-7",
|
||||
name: "Claude Opus 4.7",
|
||||
context_length: 200000,
|
||||
context_length: 1000000,
|
||||
max_tokens: 32000,
|
||||
},
|
||||
{
|
||||
id: "anthropic/claude-sonnet-4-6",
|
||||
name: "Claude Sonnet 4.6",
|
||||
context_length: 200000,
|
||||
context_length: 1000000,
|
||||
max_tokens: 32000,
|
||||
},
|
||||
{
|
||||
@@ -184,14 +184,14 @@ export const hermesProviderPresets: HermesProviderPreset[] = [
|
||||
{
|
||||
id: "deepseek-chat",
|
||||
name: "DeepSeek V3.2",
|
||||
context_length: 64000,
|
||||
context_length: 128000,
|
||||
max_tokens: 8000,
|
||||
},
|
||||
{
|
||||
id: "deepseek-reasoner",
|
||||
name: "DeepSeek R1",
|
||||
context_length: 64000,
|
||||
max_tokens: 8000,
|
||||
context_length: 128000,
|
||||
max_tokens: 64000,
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
@@ -117,13 +117,13 @@ export const openclawProviderPresets: OpenClawProviderPreset[] = [
|
||||
{
|
||||
id: "deepseek-chat",
|
||||
name: "DeepSeek V3.2",
|
||||
contextWindow: 64000,
|
||||
contextWindow: 128000,
|
||||
cost: { input: 0.0005, output: 0.002 },
|
||||
},
|
||||
{
|
||||
id: "deepseek-reasoner",
|
||||
name: "DeepSeek R1",
|
||||
contextWindow: 64000,
|
||||
contextWindow: 128000,
|
||||
cost: { input: 0.0005, output: 0.002 },
|
||||
},
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user