fix: update DeepSeek context window from 64k to 128k
DeepSeek V3 documentation specifies 128k context window for both deepseek-chat and deepseek-reasoner. The previous 64k value caused premature compaction and underutilization of available context. Relates to #39 Co-Authored-By: Juan Camilo <juancamilo.auriti@gmail.com>
This commit is contained in:
@@ -24,9 +24,9 @@ const OPENAI_CONTEXT_WINDOWS: Record<string, number> = {
|
|||||||
'o4-mini': 200_000,
|
'o4-mini': 200_000,
|
||||||
'o3': 200_000,
|
'o3': 200_000,
|
||||||
|
|
||||||
// DeepSeek
|
// DeepSeek (V3: 128k context per official docs)
|
||||||
'deepseek-chat': 64_000,
|
'deepseek-chat': 128_000,
|
||||||
'deepseek-reasoner': 64_000,
|
'deepseek-reasoner': 128_000,
|
||||||
|
|
||||||
// Groq (fast inference)
|
// Groq (fast inference)
|
||||||
'llama-3.3-70b-versatile': 128_000,
|
'llama-3.3-70b-versatile': 128_000,
|
||||||
|
|||||||
Reference in New Issue
Block a user