From eb1463417755657d092d4ecb4a2974a2093b7ebe Mon Sep 17 00:00:00 2001 From: kyrykbaev Date: Wed, 3 Jun 2026 04:02:12 +0000 Subject: [PATCH] increase AI max_tokens to 4000 --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index f39cde0..4d7af66 100644 --- a/index.html +++ b/index.html @@ -1252,7 +1252,7 @@ async function runAiAnalysis() { method:'POST', signal:controller.signal, headers:{'Content-Type':'application/json','Authorization':'Bearer '+apiKey}, body:JSON.stringify({ - model:'deepseek-chat', max_tokens:1800, + model:'deepseek-chat', max_tokens:4000, messages:[ {role:'system',content:'Ты опытный аналитик данных. Отвечай структурированно, конкретно, на русском языке.'}, {role:'user', content:buildPrompt(AppState.snapshots)},