From 25717759f7093e298217b8e8356c80b915a4b327 Mon Sep 17 00:00:00 2001 From: Pierre Martin Date: Thu, 6 Aug 2026 09:33:20 +0200 Subject: [PATCH] =?UTF-8?q?feat(ai):=C2=A0ajout=20DeepSeek=20+=20context?= =?UTF-8?q?=20window=20correcte?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- programs/pi.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/programs/pi.nix b/programs/pi.nix index 0249362..81d6af3 100644 --- a/programs/pi.nix +++ b/programs/pi.nix @@ -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; } ];