feat(ai): ajout DeepSeek + context window correcte

This commit is contained in:
Pierre Martin
2026-08-06 09:33:20 +02:00
parent 05757c6c9d
commit 25717759f7

View File

@@ -22,7 +22,16 @@ let
id = "LM-Code";
name = "LM-Code (glm-5.2 Lundi Matin)";
reasoning = true;
contextWindow = 500000;
# Limite réelle mesurée via la passerelle LiteLLM (HTTP 400 ContextWindowExceededError).
contextWindow = 250000;
maxTokens = 64000;
}
{
id = "deepseek-v4-flash";
name = "DeepSeek V4 Flash Lundi Matin";
reasoning = true;
# Limite réelle mesurée via la passerelle LiteLLM (HTTP 400 ContextWindowExceededError).
contextWindow = 262144;
maxTokens = 64000;
}
];